diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-08-12 23:31:47 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-08-14 15:52:29 -0600 |
commit | dc73e1b104cf59f936e3c2bb5cfc3c0e147f99de (patch) | |
tree | dcf9c55d49c55ff73db083e6e330be22ee97378c /doc | |
parent | a36ef7a8a8dd74830e0af3c8135cf4077891a96d (diff) | |
download | numpy-dc73e1b104cf59f936e3c2bb5cfc3c0e147f99de.tar.gz |
DOC: Various fixes.
Fix typos and clarify some explanations. Document the changes in the return
values of nanargmin and nanargmax for all-NaN slices in the 1.8.0 release
notes.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.8.0-notes.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/release/1.8.0-notes.rst b/doc/release/1.8.0-notes.rst index 834a23f99..4b682a992 100644 --- a/doc/release/1.8.0-notes.rst +++ b/doc/release/1.8.0-notes.rst @@ -47,6 +47,10 @@ case, now indicates a 0-D iteration and ``op_axes`` being NULL and the old usage is deprecated. This does not effect the ``NpyIter_New`` or ``NpyIter_MultiNew`` functions. +The functions nanargmin and nanargmax now return np.iinfo['intp'].min for +the index in all-NaN slices. Previously the functions would raise a ValueError +for array returns and NaN for scalar returns. + NPY_RELAXED_STRIDES_CHECKING ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ There is a new compile time environment variable |