diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-02-10 09:57:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-10 09:57:19 -0700 |
commit | 5e3fb00b37f5b1c752f6f44c5717b2d84ee7daff (patch) | |
tree | 5cbd356b49d8510b74dacf9a4daaaa9d71d6ab78 /doc | |
parent | bec587c6e5068fb19d57cdbe2ed36e953ca97005 (diff) | |
download | numpy-5e3fb00b37f5b1c752f6f44c5717b2d84ee7daff.tar.gz |
DOC: Use getitem and setitem in index
Replaces getslice and setslice which have been removed.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/reference/arrays.indexing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/arrays.indexing.rst b/doc/source/reference/arrays.indexing.rst index aeb685025..6a5f428da 100644 --- a/doc/source/reference/arrays.indexing.rst +++ b/doc/source/reference/arrays.indexing.rst @@ -36,8 +36,8 @@ objects, the :const:`Ellipsis` object, or the :const:`newaxis` object, but not for integer arrays or other embedded sequences. .. index:: - triple: ndarray; special methods; get slice - triple: ndarray; special methods; set slice + triple: ndarray; special methods; getitem + triple: ndarray; special methods; setitem single: ellipsis single: newaxis |