diff options
author | K.-Michael Aye <kmichael.aye@gmail.com> | 2013-07-19 15:21:09 -0700 |
---|---|---|
committer | K.-Michael Aye <kmichael.aye@gmail.com> | 2013-07-19 15:21:09 -0700 |
commit | 9c93f75f02ae5c2c1d9e8a806bcdebc63c6ba98f (patch) | |
tree | 8a8732be4202d9e917c53e2dba6d97d444c33e6a /numpy/core | |
parent | c5694c5188c76701eed47c0736ee9c285f47d07d (diff) | |
download | numpy-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.py | 2 |
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 |