diff options
author | logeaux <36168460+logeaux@users.noreply.github.com> | 2018-07-14 17:06:09 -0500 |
---|---|---|
committer | logeaux <36168460+logeaux@users.noreply.github.com> | 2018-07-14 17:06:09 -0500 |
commit | 4afb1f2b0a8610edada66fea5b309c27f48a17b6 (patch) | |
tree | 9332ecf0e52e694167a5c86b922db8181eeb2b22 /numpy/doc/indexing.py | |
parent | 93759332520c44fa02bb65fdec6b56c14666c35a (diff) | |
download | numpy-4afb1f2b0a8610edada66fea5b309c27f48a17b6.tar.gz |
DOC: Updated Slice Description
Diffstat (limited to 'numpy/doc/indexing.py')
-rw-r--r-- | numpy/doc/indexing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/indexing.py b/numpy/doc/indexing.py index 5f5033117..087a688bc 100644 --- a/numpy/doc/indexing.py +++ b/numpy/doc/indexing.py @@ -93,7 +93,7 @@ well. A few examples illustrates best: :: [21, 24, 27]]) Note that slices of arrays do not copy the internal array data but -also produce new views of the original data. +only produce new views of the original data. It is possible to index arrays with other arrays for the purposes of selecting lists of values out of arrays into new arrays. There are |