diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-06-03 13:23:46 +0100 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2017-06-03 13:37:15 +0100 |
commit | cbaa809820656bf39f4ec78a9bec1426239ce440 (patch) | |
tree | 11ea32b20030a51eecf51ba43e58456cebc56081 /numpy/doc/indexing.py | |
parent | 0e4610e30aabaf32c037fc94c869a20f2435a8f1 (diff) | |
download | numpy-cbaa809820656bf39f4ec78a9bec1426239ce440.tar.gz |
MAINT: Don't internally use the one-argument where
nonzero is a clearer spelling
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 39b2c73ed..b286a904d 100644 --- a/numpy/doc/indexing.py +++ b/numpy/doc/indexing.py @@ -422,7 +422,7 @@ object: :: [37, 40, 43], [46, 49, 52]]) -For this reason it is possible to use the output from the np.where() +For this reason it is possible to use the output from the np.nonzero() function directly as an index since it always returns a tuple of index arrays. |