summaryrefslogtreecommitdiff
path: root/doc/release
diff options
context:
space:
mode:
authorMark Wiebe <mwwiebe@gmail.com>2011-08-19 15:24:34 -0700
committerCharles Harris <charlesr.harris@gmail.com>2011-08-27 07:26:57 -0600
commit3941e5aca8ab2cbd94f1e4e171763a4d5ef35825 (patch)
treedccbb04b0c58519bddbd23d7dde04a55653bb1f5 /doc/release
parent4838339d30d5d1d4857781a040548c2080713e5b (diff)
downloadnumpy-3941e5aca8ab2cbd94f1e4e171763a4d5ef35825.tar.gz
BUG: ufunc: Fix bug in multi-dimensional reduction without a unit
Diffstat (limited to 'doc/release')
-rw-r--r--doc/release/2.0.0-notes.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst
index 3f4b62096..5cabf245c 100644
--- a/doc/release/2.0.0-notes.rst
+++ b/doc/release/2.0.0-notes.rst
@@ -44,6 +44,8 @@ What doesn't work with NA:
* 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.
+ * The reduction methods like <ndarray>.sum, etc. do not yet support
+ the new extended axis=, skipna= and keepdims= parameters.
* Array methods:
+ ndarray.argmax, ndarray.argmin,
+ numpy.repeat, numpy.delete (relies on fancy indexing),