diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-02-20 18:13:23 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-02-20 18:13:23 +0000 |
commit | 33d45c3ceb3871062d4af32ad368f0b732793938 (patch) | |
tree | 5f6f889ce7dd48d635a39c716076370022123dd2 | |
parent | 1ddd3c43fd9bbe2f893575e23ecc86f09a36ae81 (diff) | |
download | numpy-33d45c3ceb3871062d4af32ad368f0b732793938.tar.gz |
3K: doc: note in Py3K porting log that intp('0xff', 16) does not work any more
-rw-r--r-- | doc/Py3K.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/Py3K.txt b/doc/Py3K.txt index 8c228b4a7..d838c722d 100644 --- a/doc/Py3K.txt +++ b/doc/Py3K.txt @@ -682,6 +682,12 @@ Py3 int translate to NPY_LONG as far as dtypes are concerned. Audit the automatic dtype decision -- did I plug all the cases? +.. todo:: + + Not inheriting from `int` on Python 3 makes the following not work: + ``np.intp("0xff", 16)`` -- because the Numpy type does not take + the second argument. This could perhaps be fixed... + Divide ------ |