diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-07-23 23:16:16 -0700 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-07-23 23:16:16 -0700 |
commit | 7b2f20b406d27364c812f7a81a9c901afbd3600c (patch) | |
tree | 1f9f8780fb227c64b4839abb3a2d65829b58ca63 /numpy/core/fromnumeric.py | |
parent | 90ececac5755b0b54d7c8c2c5d71caaeb5c0b45c (diff) | |
parent | 6352343b8ddbf88e3ebb8bf8b65bd08424ef729b (diff) | |
download | numpy-7b2f20b406d27364c812f7a81a9c901afbd3600c.tar.gz |
Merge pull request #3538 from michaelaye/patch-1
Docstring: point to correct equivalent function (one word change)
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 5735b6124..069a28feb 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -1378,7 +1378,8 @@ def compress(condition, a, axis=None, out=None): See Also -------- take, choose, diag, diagonal, select - ndarray.compress : Equivalent method. + ndarray.compress : Equivalent method in ndarray + np.extract: Equivalent method when working on 1-D arrays numpy.doc.ufuncs : Section "Output arguments" Examples |