diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-02-09 12:51:32 +0000 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2017-02-09 17:09:27 +0000 |
commit | 994f8a1dbb137fd4daf881184972637964983ad8 (patch) | |
tree | 6db8106c264db8413dc1490f2c4107fa0697c1be /doc/source/reference/arrays.ndarray.rst | |
parent | 98b3127fa61e09387e1f7cf925acfcb36043e48a (diff) | |
download | numpy-994f8a1dbb137fd4daf881184972637964983ad8.tar.gz |
MAINT: Remove __setslice__ and __getslice__
This code was only here for Python 2.5 compatibility, but numpy requires 2.7
at minimum
Diffstat (limited to 'doc/source/reference/arrays.ndarray.rst')
-rw-r--r-- | doc/source/reference/arrays.ndarray.rst | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst index f57fb0728..4c8bbf66d 100644 --- a/doc/source/reference/arrays.ndarray.rst +++ b/doc/source/reference/arrays.ndarray.rst @@ -595,8 +595,6 @@ Container customization: (see :ref:`Indexing <arrays.indexing>`) ndarray.__len__ ndarray.__getitem__ ndarray.__setitem__ - ndarray.__getslice__ - ndarray.__setslice__ ndarray.__contains__ Conversion; the operations :func:`complex()`, :func:`int()`, |