summaryrefslogtreecommitdiff
path: root/numpy/lib/nanfunctions.py
diff options
context:
space:
mode:
authorJulian Taylor <juliantaylor108@gmail.com>2017-06-10 12:02:30 +0200
committerGitHub <noreply@github.com>2017-06-10 12:02:30 +0200
commit7cfec2403486456b52b525eccf7541e1562d9ab3 (patch)
tree537ce22035ad4a22e7eba29720124b5eb82d4574 /numpy/lib/nanfunctions.py
parentfa913a8ea6a8b363962dec6d656049a1371b53d9 (diff)
parent34075a54e7aa10e80d41ef33ec7102292ecff0d5 (diff)
downloadnumpy-7cfec2403486456b52b525eccf7541e1562d9ab3.tar.gz
Merge pull request #9238 from rgommers/docbuild-master
DOC: BLD: fix lots of Sphinx warnings/errors.
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 97bd33492..c95c845f3 100644
--- a/numpy/lib/nanfunctions.py
+++ b/numpy/lib/nanfunctions.py
@@ -1088,7 +1088,7 @@ def nanpercentile(a, q, axis=None, out=None, overwrite_input=False,
>>> a[0][1] = np.nan
>>> a
array([[ 10., nan, 4.],
- [ 3., 2., 1.]])
+ [ 3., 2., 1.]])
>>> np.percentile(a, 50)
nan
>>> np.nanpercentile(a, 50)