diff options
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index ba99a1e42..ad2dcc291 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1505,7 +1505,7 @@ def rollaxis(a, axis, start=0): Returns ------- res : ndarray - For NumPy >= 1.10 a view of `a` is always returned. For earlier + For NumPy >= 1.10.0 a view of `a` is always returned. For earlier NumPy versions a view of `a` is returned only if the order of the axes is changed, otherwise the input array is returned. |