diff options
author | Hameer Abbasi <hameerabbasi@yahoo.com> | 2019-05-10 19:14:35 -0700 |
---|---|---|
committer | Hameer Abbasi <hameerabbasi@yahoo.com> | 2019-05-11 15:03:48 -0700 |
commit | 12fb1015511ac3804d0785bb0d1fe539385548ad (patch) | |
tree | a7ba6590987c2e7a048347c1682f1012e10d6cfb /numpy/core/defchararray.py | |
parent | 634d66d5c5461c6c1480e97c1d3fbc4c4ea96a00 (diff) | |
download | numpy-12fb1015511ac3804d0785bb0d1fe539385548ad.tar.gz |
ENH: Radix sort
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r-- | numpy/core/defchararray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index 3fd7d14c4..d7ecce1b4 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -2124,7 +2124,7 @@ class chararray(ndarray): def __rmod__(self, other): return NotImplemented - def argsort(self, axis=-1, kind='quicksort', order=None): + def argsort(self, axis=-1, kind=None, order=None): """ Return the indices that sort the array lexicographically. |