summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2020-02-28 11:08:51 +0200
committermattip <matti.picus@gmail.com>2020-02-28 11:08:51 +0200
commit9f66b90132b761994e16bed8cc30fe4a7885f849 (patch)
treea88df92678641437d3804841d0f4d399ea88c9c4 /numpy
parent2d0fd2fed850c5967c14fc696d5d8ecd1abc03b2 (diff)
downloadnumpy-9f66b90132b761994e16bed8cc30fe4a7885f849.tar.gz
DOC: reorder for a better flow
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/code_generators/ufunc_docstrings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py
index 77fd0e3d8..129516658 100644
--- a/numpy/core/code_generators/ufunc_docstrings.py
+++ b/numpy/core/code_generators/ufunc_docstrings.py
@@ -3835,11 +3835,11 @@ add_newdoc('numpy.core.umath', 'true_divide',
>>> np.true_divide(x, 4)
array([ 0. , 0.25, 0.5 , 0.75, 1. ])
- >>> x//4
- array([0, 0, 0, 0, 1])
-
>>> 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',