summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
authorK.-Michael Aye <kmichael.aye@gmail.com>2013-07-19 15:21:09 -0700
committerK.-Michael Aye <kmichael.aye@gmail.com>2013-07-19 15:21:09 -0700
commit9c93f75f02ae5c2c1d9e8a806bcdebc63c6ba98f (patch)
tree8a8732be4202d9e917c53e2dba6d97d444c33e6a /numpy/core
parentc5694c5188c76701eed47c0736ee9c285f47d07d (diff)
downloadnumpy-9c93f75f02ae5c2c1d9e8a806bcdebc63c6ba98f.tar.gz
Docstring: point to correct equivalent function
np.compress' "See also" pointed to itself instead to equivalent np.extract
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/fromnumeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py
index 5735b6124..20e53e918 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -1378,7 +1378,7 @@ def compress(condition, a, axis=None, out=None):
See Also
--------
take, choose, diag, diagonal, select
- ndarray.compress : Equivalent method.
+ ndarray.extract : Equivalent method.
numpy.doc.ufuncs : Section "Output arguments"
Examples