From 159bfbcf97ed89f08d4fcfc8f64c5ad51657df2a Mon Sep 17 00:00:00 2001 From: Mark Wiebe Date: Thu, 25 Aug 2011 23:24:31 -0700 Subject: DOC: Mention the update to np.all and np.any in the release notes --- doc/release/2.0.0-notes.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'doc/release') 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, -- cgit v1.2.1