diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-08-19 15:24:34 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-08-27 07:26:57 -0600 |
commit | 3941e5aca8ab2cbd94f1e4e171763a4d5ef35825 (patch) | |
tree | dccbb04b0c58519bddbd23d7dde04a55653bb1f5 /doc/release | |
parent | 4838339d30d5d1d4857781a040548c2080713e5b (diff) | |
download | numpy-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.rst | 2 |
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), |