summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/core/code_generators/ufunc_docstrings.py3
-rw-r--r--numpy/lib/ufunclike.py4
2 files changed, 0 insertions, 7 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py
index cadb47c55..29a504b52 100644
--- a/numpy/core/code_generators/ufunc_docstrings.py
+++ b/numpy/core/code_generators/ufunc_docstrings.py
@@ -1458,9 +1458,6 @@ add_newdoc('numpy.core.umath', 'isinf',
Errors result if second argument is also supplied with scalar input or
if first and second arguments have different shapes.
- Numpy's definitions for positive infinity (PINF) and negative infinity
- (NINF) may be change in the future versions.
-
Examples
--------
>>> np.isinf(np.inf)
diff --git a/numpy/lib/ufunclike.py b/numpy/lib/ufunclike.py
index 24f35da81..8ea7c6662 100644
--- a/numpy/lib/ufunclike.py
+++ b/numpy/lib/ufunclike.py
@@ -93,10 +93,6 @@ def isposinf(x, y=None):
Errors result if second argument is also supplied with scalar input or
if first and second arguments have different shapes.
- Numpy's definitions for positive infinity (PINF) and negative infinity
- (NINF) may be change in the future versions.
-
-
Examples
--------
>>> np.isposinf(np.PINF)