summaryrefslogtreecommitdiff
path: root/numpy/core/defchararray.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-05-11 20:01:16 -0700
committerGitHub <noreply@github.com>2019-05-11 20:01:16 -0700
commit3bdc915f8a3d01625dda917102978b81b3609ace (patch)
treece023e56ff36e27954330edc271e92068cdddfc0 /numpy/core/defchararray.py
parent4def09ae0c596f00b90774986c13e833ccfa86cc (diff)
parent7f586789e4b4e84f8f947e6d61c8718b453632af (diff)
downloadnumpy-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.py2
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.