diff options
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index ae23d3cbf..bfd8a1e0d 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -134,7 +134,7 @@ def sort(a, axis=-1): def argsort(a, axis=-1): """argsort(a,axis=-1) return the indices into a of the sorted array - along the given axis, so that take(a,result,axis) is the sorted array. + along the given axis. """ try: argsort = a.argsort |