summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorBen Elliston <bje@air.net.au>2020-05-19 17:05:21 +1000
committerGitHub <noreply@github.com>2020-05-19 10:05:21 +0300
commit74c111f0c40978ad064daabfe17658a308721a2d (patch)
tree992888ad8c834c31970a5f40bba3b677ac6fed58 /numpy/core/numeric.py
parent8cb86fd7b454b40c7b822146d5e26c55fdc183ec (diff)
downloadnumpy-74c111f0c40978ad064daabfe17658a308721a2d.tar.gz
DOC: Add math.isclose to See Also (#16283)
* DOC: Move math.isclose note to See Also.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 8bd4e241b..05f0b7820 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -2230,6 +2230,7 @@ def isclose(a, b, rtol=1.e-5, atol=1.e-8, equal_nan=False):
See Also
--------
allclose
+ math.isclose
Notes
-----