diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-05-16 10:48:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-16 10:48:31 -0600 |
commit | c61044412938fc7a41930688cf85e6fee5208044 (patch) | |
tree | 56efb62d8a9976d174b4bcfc429f94f9189f9efb | |
parent | f8c2b7fe3ff54f5cf28080a419df57c308d673a6 (diff) | |
parent | f19f01fc1a96dfe3c607c5bf83aca0f1ead8459b (diff) | |
download | numpy-c61044412938fc7a41930688cf85e6fee5208044.tar.gz |
Merge pull request #9122 from ahaldane/1.13_note_ma_scalar
DOC: update 1.13 release note for MaskedArray, masked constants ellipisis indexing
-rw-r--r-- | doc/release/1.13.0-notes.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/release/1.13.0-notes.rst b/doc/release/1.13.0-notes.rst index 0f8bb02e9..23173d826 100644 --- a/doc/release/1.13.0-notes.rst +++ b/doc/release/1.13.0-notes.rst @@ -137,6 +137,11 @@ invokes``ndarray.__getslice__`` (e.g. through ``super(...).__getslice__``) will now issue a DeprecationWarning - ``.__getitem__(slice(start, end))`` should be used instead. +Indexing MaskedArrays/Constants with ``...`` (ellipsis) now returns MaskedArray +------------------------------------------------------------------------------- +This behavior mirrors that of np.ndarray, and accounts for nested arrays in +MaskedArrays of object dtype, and ellipsis combined with other forms of +indexing. C API changes ============= |