diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-07-11 15:02:36 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-07-11 15:02:36 +0000 |
commit | b08b7b1b9f903d100d2111e42c2a17599fc7a0b0 (patch) | |
tree | 98f91f493c0edeea4950b9061fc9f18608b0cdb2 /doc | |
parent | 4f732e54bd060d4fef301a20794c7610cfb6ef65 (diff) | |
download | numpy-b08b7b1b9f903d100d2111e42c2a17599fc7a0b0.tar.gz |
DOC: more updates to Py3K.txt
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Py3K.txt | 21 |
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 ====== |