diff options
author | Pauli Virtanen <pav@iki.fi> | 2009-11-07 21:41:43 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2009-11-07 21:41:43 +0000 |
commit | ba4fd564280dfe2263c6da554f5af2ef304df37b (patch) | |
tree | 40f111a859a52ed47a74c9d0376d38106ba63dc3 | |
parent | 0ff968e53840483d0831e8c1d48d61abb6a34373 (diff) | |
download | numpy-ba4fd564280dfe2263c6da554f5af2ef304df37b.tar.gz |
docs: document r7697 in release notes
-rw-r--r-- | doc/release/1.4.0-notes.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/release/1.4.0-notes.rst b/doc/release/1.4.0-notes.rst index e8c91bf20..72daaf495 100644 --- a/doc/release/1.4.0-notes.rst +++ b/doc/release/1.4.0-notes.rst @@ -136,6 +136,16 @@ The following functions are deprecated: old behavior will be removed in NumPy 1.5, and raises a DeprecationWarning in 1.4. +The following raise errors: + + #. When operating on 0-d arrays, ``numpy.max`` and other functions accept + only ``axis=0``, ``axis=-1`` and ``axis=None``. Using an out-of-bounds + axes is an indication of a bug, so Numpy raises an error for these cases + now. + + #. Specifying ``axis > MAX_DIMS`` is no longer allowed; Numpy raises now an + error instead of behaving similarly as for ``axis=None``. + Internal changes ================ |