summaryrefslogtreecommitdiff
path: root/numpy/lib/nanfunctions.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-12-18 21:05:56 -0700
committerGitHub <noreply@github.com>2017-12-18 21:05:56 -0700
commitc4df171480cbaf8f04705107c2a2776e0d4d7804 (patch)
tree4baed4b78ebcee6a7578620bee6cded2defffd33 /numpy/lib/nanfunctions.py
parentc18ab2c3975c8fa8b59724fe6855c528d72fef8c (diff)
parent5f84facd682d63d54b6963e8f71993d5294b5de0 (diff)
downloadnumpy-c4df171480cbaf8f04705107c2a2776e0d4d7804.tar.gz
Merge pull request #10237 from matthew-brett/nansum-docstring
DOC: give correct version of np.nansum change
Diffstat (limited to 'numpy/lib/nanfunctions.py')
-rw-r--r--numpy/lib/nanfunctions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/nanfunctions.py b/numpy/lib/nanfunctions.py
index ca8c10031..22b295b9d 100644
--- a/numpy/lib/nanfunctions.py
+++ b/numpy/lib/nanfunctions.py
@@ -497,7 +497,7 @@ def nansum(a, axis=None, dtype=None, out=None, keepdims=np._NoValue):
Return the sum of array elements over a given axis treating Not a
Numbers (NaNs) as zero.
- In NumPy versions <= 1.8.0 Nan is returned for slices that are all-NaN or
+ In NumPy versions <= 1.9.0 Nan is returned for slices that are all-NaN or
empty. In later versions zero is returned.
Parameters