diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-05-11 20:01:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-11 20:01:16 -0700 |
commit | 3bdc915f8a3d01625dda917102978b81b3609ace (patch) | |
tree | ce023e56ff36e27954330edc271e92068cdddfc0 /numpy/core/defchararray.py | |
parent | 4def09ae0c596f00b90774986c13e833ccfa86cc (diff) | |
parent | 7f586789e4b4e84f8f947e6d61c8718b453632af (diff) | |
download | numpy-3bdc915f8a3d01625dda917102978b81b3609ace.tar.gz |
Merge pull request #12586 from hameerabbasi/radix-sort
ENH: Implement 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. |