diff options
author | Lakshay Garg <lakshayg@outlook.in> | 2018-03-23 00:09:58 +0530 |
---|---|---|
committer | Lakshay Garg <lakshayg@outlook.in> | 2018-03-23 03:40:17 +0530 |
commit | 864a431fd6047b1c26a7001bd2e3d989a5320e0f (patch) | |
tree | b57cdb4d8ec4f426561cfcad6b096857366f7790 /numpy/add_newdocs.py | |
parent | 2085cc7ff48f5ba6bdf39c27d0182d6593905fe5 (diff) | |
download | numpy-864a431fd6047b1c26a7001bd2e3d989a5320e0f.tar.gz |
add stablesort in np.sort and point to mergesort
Closes #10784
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index 316b38e77..0a7b2b13d 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -4494,7 +4494,7 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('sort', axis : int, optional Axis along which to sort. Default is -1, which means sort along the last axis. - kind : {'quicksort', 'mergesort', 'heapsort'}, optional + kind : {'quicksort', 'mergesort', 'heapsort', 'stable'}, optional Sorting algorithm. Default is 'quicksort'. order : str or list of str, optional When `a` is an array with fields defined, this argument specifies |