summaryrefslogtreecommitdiff
path: root/numpy/lib/nanfunctions.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/nanfunctions.py')
-rw-r--r--numpy/lib/nanfunctions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/nanfunctions.py b/numpy/lib/nanfunctions.py
index 818119eee..44cc2b163 100644
--- a/numpy/lib/nanfunctions.py
+++ b/numpy/lib/nanfunctions.py
@@ -401,8 +401,8 @@ def nansum(a, axis=None, dtype=None, out=None, keepdims=0):
Return the sum of array elements over a given axis treating
Not a Numbers (NaNs) as zero.
- FutureWarning: In Numpy versions <= 1.8 Nan is returned for slices that
- are all-NaN or empty. In later versions zero will be returned.
+ In Numpy versions <= 1.8 Nan is returned for slices that
+ are all-NaN or empty. In later versions zero is returned.
Parameters
----------