From 12fb1015511ac3804d0785bb0d1fe539385548ad Mon Sep 17 00:00:00 2001 From: Hameer Abbasi Date: Fri, 10 May 2019 19:14:35 -0700 Subject: ENH: Radix sort --- numpy/core/defchararray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/defchararray.py') 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. -- cgit v1.2.1