summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/Py3K.txt21
1 files changed, 12 insertions, 9 deletions
diff --git a/doc/Py3K.txt b/doc/Py3K.txt
index 7f4452dac..ad76fe240 100644
--- a/doc/Py3K.txt
+++ b/doc/Py3K.txt
@@ -11,7 +11,11 @@ Developer notes on the transition to Python 3
General
=======
-If you work on Py3 transition, please try to keep this document up-to-date.
+Numpy has now been ported to Python 3.
+
+Some glitches may still be present; however, we are not aware of any
+significant ones, the test suite passes.
+
Resources
---------
@@ -22,14 +26,6 @@ Information on porting to 3K:
- http://wiki.python.org/moin/PortingExtensionModulesToPy3k
-Git trees
----------
-
-- http://github.com/pv/numpy-work/commits/py3k
-- http://github.com/cournape/numpy/commits/py3_bootstrap
-- http://github.com/illume/numpy3k/commits/work
-
-
Prerequisites
-------------
@@ -208,6 +204,13 @@ I assumed they are meant for reading Bytes streams -- this is probably
the far more common use case with scientific data.
+Cyclic imports
+--------------
+
+Python 3 is less forgiving about cyclic imports than Python 2. Cycles
+need to be broken to have the same code work both on Python 2 and 3.
+
+
C Code
======