diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-08-25 23:24:31 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-08-27 07:27:02 -0600 |
commit | 159bfbcf97ed89f08d4fcfc8f64c5ad51657df2a (patch) | |
tree | a7c4cba4a3b5c58ce03cfd02163e844daee80430 /doc | |
parent | 73d41dd2497ddf291b55d7af28f748f6ca4b9065 (diff) | |
download | numpy-159bfbcf97ed89f08d4fcfc8f64c5ad51657df2a.tar.gz |
DOC: Mention the update to np.all and np.any in the release notes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/2.0.0-notes.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst index d6879cfab..169869bc5 100644 --- a/doc/release/2.0.0-notes.rst +++ b/doc/release/2.0.0-notes.rst @@ -26,6 +26,8 @@ What works with NA: * Basic indexing and slicing, as well as full boolean mask indexing. * All element-wise ufuncs. * All UFunc.reduce methods, with a new skipna parameter. + * np.all and np.any satisfy the rules NA | True == True and + NA & False == False * The nditer object. * Array methods: + ndarray.clip, ndarray.min, ndarray.max, ndarray.sum, ndarray.prod, @@ -43,7 +45,7 @@ What doesn't work with NA: * UFunc.accumulate, UFunc.reduceat. * Ufunc calls with both NA masks and a where= mask at the same time. * File I/O has not been extended to support NA-masks. - * np.logical_and, np.logical_or, np.all, and np.any don't satisfy the + * np.logical_and and np.logical_or don't satisfy the rules NA | True == True and NA & False == False yet. * Array methods: + ndarray.argmax, ndarray.argmin, |