summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2013-09-14 14:53:26 +0200
committerJulian Taylor <jtaylor.debian@googlemail.com>2013-09-14 16:01:02 +0200
commitd4ef9b119f0954123de9acf5cf1fcb5358d99110 (patch)
tree76105714c88bd73f38422a5b5a6dba4ea0d0e0da /numpy/core/numeric.py
parentf5fceebd33950113fe523c60c94f641fe8b3dce7 (diff)
downloadnumpy-d4ef9b119f0954123de9acf5cf1fcb5358d99110.tar.gz
DOC: add isclose and partition to reference and link some docs
also drop sometrue/alltrue link, its equivalent to any/all.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 1b3d5d5a8..1aa59ce58 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -2083,7 +2083,7 @@ def allclose(a, b, rtol=1.e-5, atol=1.e-8):
See Also
--------
- all, any, alltrue, sometrue
+ isclose, all, any
Notes
-----