summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
authorjnothman <jnothman@student.usyd.edu.au>2014-11-04 15:49:12 +1100
committerCharles Harris <charlesr.harris@gmail.com>2015-01-18 10:20:17 -0700
commit5c00d82b9fdb0cb0e137ba36549ce12ad3d0d047 (patch)
treeebd2ddd055cd754b0fb298529b83e5239b8d643d /numpy/core
parent8a81c08e777996b933fe4568ee5a6a0e01416faf (diff)
downloadnumpy-5c00d82b9fdb0cb0e137ba36549ce12ad3d0d047.tar.gz
DOC : rollaxis returns a view of the input.
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/numeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 430f7a715..0f3ee8a4d 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -1410,7 +1410,7 @@ def rollaxis(a, axis, start=0):
Returns
-------
res : ndarray
- Output array.
+ A view of `a` with its axes permuted.
See Also
--------