diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-11-22 10:36:27 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-11-22 10:36:27 -0700 |
commit | e9a7e2884a20db689fe92a9b435ff7de06d356a8 (patch) | |
tree | a4d58405ad2f452830cffc57c435189632c3e8c1 /doc | |
parent | 38ba1e3c1ce6895ab2c0b3f61c2ad95e6db757bf (diff) | |
download | numpy-e9a7e2884a20db689fe92a9b435ff7de06d356a8.tar.gz |
DEP: ``NpyIter_AdvancedNew`` deprecation to ValueError
NpyIter_AdvancedNew raises ValueError when `oa_ndim == 0` and
`op_axes` is NULL.
Deprecated since NumPy 1.8.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.13.0-notes.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/release/1.13.0-notes.rst b/doc/release/1.13.0-notes.rst index a9f533b45..34026c4e5 100644 --- a/doc/release/1.13.0-notes.rst +++ b/doc/release/1.13.0-notes.rst @@ -30,7 +30,8 @@ Compatibility notes DeprecationWarning to error ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -* Non-integer partition index now raises TypeError. +* ``partition``, TypeError when non-integer partition index is used. +* ``NpyIter_AdvancedNew``, ValueError when `oa_ndim == 0` and `op_axes` is NULL FutureWarning to changed behavior ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |