summaryrefslogtreecommitdiff
path: root/numpy/core/code_generators/ufunc_docstrings.py
diff options
context:
space:
mode:
authorEmmanuelle Gouillart <emma@plot.ly>2020-02-04 11:22:14 -0500
committerGitHub <noreply@github.com>2020-02-04 11:22:14 -0500
commit2d0fd2fed850c5967c14fc696d5d8ecd1abc03b2 (patch)
tree744e796cb9e501bcae89f6c18cffa033d8139db0 /numpy/core/code_generators/ufunc_docstrings.py
parent85be00ab0c36ded200747f5b82ab52e74db80b8f (diff)
downloadnumpy-2d0fd2fed850c5967c14fc696d5d8ecd1abc03b2.tar.gz
Removed duplicated code in docstring
I believe this line comes from an older version of the docstring which was importing `__future__`.
Diffstat (limited to 'numpy/core/code_generators/ufunc_docstrings.py')
-rw-r--r--numpy/core/code_generators/ufunc_docstrings.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py
index 33ad1502d..77fd0e3d8 100644
--- a/numpy/core/code_generators/ufunc_docstrings.py
+++ b/numpy/core/code_generators/ufunc_docstrings.py
@@ -3840,9 +3840,6 @@ add_newdoc('numpy.core.umath', 'true_divide',
>>> x/4
array([ 0. , 0.25, 0.5 , 0.75, 1. ])
- >>> x//4
- array([0, 0, 0, 0, 1])
-
""")
add_newdoc('numpy.core.umath', 'frexp',