diff options
author | Berend Kapelle <berend.kapelle@gmail.com> | 2018-04-03 21:37:09 +0200 |
---|---|---|
committer | Berend Kapelle <berend.kapelle@gmail.com> | 2018-04-03 21:37:09 +0200 |
commit | 3d5caa2b8cb51851f218283cd2435b00ecce5d16 (patch) | |
tree | 03ea874a093d563c6b6852178ebd15a59b7b750c /numpy/lib | |
parent | 4c349d855c12e6f0ba0bf925939f7a8156c825d8 (diff) | |
download | numpy-3d5caa2b8cb51851f218283cd2435b00ecce5d16.tar.gz |
doc: fix examples in docstring for np.flip
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/function_base.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 9ccbfafa2..8440be52e 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -184,21 +184,18 @@ def flip(m, axis): >>> A array([[[0, 1], [2, 3]], - [[4, 5], [6, 7]]]) >>> flip(A, 0) array([[[4, 5], [6, 7]], - [[0, 1], [2, 3]]]) >>> flip(A, 1) array([[[2, 3], [0, 1]], - [[6, 7], [4, 5]]]) |