diff options
author | CJ Carey <perimosocordiae@gmail.com> | 2014-05-07 15:51:24 -0400 |
---|---|---|
committer | CJ Carey <perimosocordiae@gmail.com> | 2014-05-07 15:51:24 -0400 |
commit | 3262c93655dd256878113d9ee145fc2a8615e8fb (patch) | |
tree | 8f5fba5c17093572804e9a5602b1d5012ec7b3c0 /numpy/core/numeric.py | |
parent | 02008f7394621a13302890ede90d29b864eebabf (diff) | |
download | numpy-3262c93655dd256878113d9ee145fc2a8615e8fb.tar.gz |
removing call to asanyarray
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 7962f9679..38c28da6d 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -767,7 +767,7 @@ def argwhere(a): [1, 2]]) """ - return transpose(asanyarray(a).nonzero()) + return transpose(nonzero(a)) def flatnonzero(a): """ |