summaryrefslogtreecommitdiff
path: root/doc/release
diff options
context:
space:
mode:
authorMark Wiebe <mwwiebe@gmail.com>2011-08-05 15:02:17 -0500
committerCharles Harris <charlesr.harris@gmail.com>2011-08-27 07:26:52 -0600
commit5e8b9acc27b9bac80b98305d71879ecb30eeecb3 (patch)
tree2867bb0de65502b4a191e2580d5f73c01c9ac464 /doc/release
parentd54c93d29bc9ac2d32b18047e085b88afa9f7095 (diff)
downloadnumpy-5e8b9acc27b9bac80b98305d71879ecb30eeecb3.tar.gz
WIP: fixing reduce NA bug
Diffstat (limited to 'doc/release')
-rw-r--r--doc/release/2.0.0-notes.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst
index 683f24eac..f36889d62 100644
--- a/doc/release/2.0.0-notes.rst
+++ b/doc/release/2.0.0-notes.rst
@@ -22,7 +22,8 @@ What works with NA:
* All element-wise ufuncs.
* UFunc.reduce methods, with a new skipna parameter.
* Array methods:
- + ndarray.clip,
+ + ndarray.clip
+ + ndarray.conjugate,
What doesn't work with NA:
* Fancy indexing, such as with lists and partial boolean masks.
@@ -30,7 +31,7 @@ What doesn't work with NA:
that doesn't have an identity.
* UFunc.accumulate, UFunc.reduceat.
* np.logical_and, np.logical_or, np.all, and np.any don't satisfy the
- rules NA | True == True, and NA & False == False yet.
+ rules NA | True == True and NA & False == False yet.
* Array methods:
+ ndarray.argmax, ndarray.argmin,