summaryrefslogtreecommitdiff
path: root/numpy/lib/nanfunctions.py
diff options
context:
space:
mode:
authorPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-07 09:48:40 +0200
committerPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-07 09:48:40 +0200
commitdb0b231f17fb2148772181626235e2644eb67c3e (patch)
tree046e1f4026b64012cd998f27363e3b12c4e35805 /numpy/lib/nanfunctions.py
parent0780721328a25389844181fd7e38f56e1a865698 (diff)
downloadnumpy-db0b231f17fb2148772181626235e2644eb67c3e.tar.gz
DOC: change version references from x.y to x.y.z
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 ab88c6a37..c024055ba 100644
--- a/numpy/lib/nanfunctions.py
+++ b/numpy/lib/nanfunctions.py
@@ -453,7 +453,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 Nan is returned for slices that are all-NaN or
+ In NumPy versions <= 1.8.0 Nan is returned for slices that are all-NaN or
empty. In later versions zero is returned.
Parameters