@@ -110,22 +110,26 @@ def argsort(
110110 axis : {None, int}, optional
111111 Axis along which to sort. If ``None``, the array is flattened before
112112 sorting. The default is ``-1``, which sorts along the last axis.
113+
113114 Default: ``-1``.
114115 kind : {None, "stable", "mergesort", "radixsort"}, optional
115116 Sorting algorithm. The default is ``None``, which uses parallel
116117 merge-sort or parallel radix-sort algorithms depending on the array
117118 data type.
119+
118120 Default: ``None``.
119121 descending : bool, optional
120122 Sort order. If ``True``, the array must be sorted in descending order
121123 (by value). If ``False``, the array must be sorted in ascending order
122124 (by value).
125+
123126 Default: ``False``.
124127 stable : {None, bool}, optional
125128 Sort stability. If ``True``, the returned array will maintain the
126129 relative order of `a` values which compare as equal. The same behavior
127130 applies when set to ``False`` or ``None``.
128131 Internally, this option selects ``kind="stable"``.
132+
129133 Default: ``None``.
130134
131135 Returns
@@ -251,22 +255,26 @@ def sort(a, axis=-1, kind=None, order=None, *, descending=False, stable=None):
251255 axis : {None, int}, optional
252256 Axis along which to sort. If ``None``, the array is flattened before
253257 sorting. The default is ``-1``, which sorts along the last axis.
258+
254259 Default: ``-1``.
255260 kind : {None, "stable", "mergesort", "radixsort"}, optional
256261 Sorting algorithm. The default is ``None``, which uses parallel
257262 merge-sort or parallel radix-sort algorithms depending on the array
258263 data type.
264+
259265 Default: ``None``.
260266 descending : bool, optional
261267 Sort order. If ``True``, the array must be sorted in descending order
262268 (by value). If ``False``, the array must be sorted in ascending order
263269 (by value).
270+
264271 Default: ``False``.
265272 stable : {None, bool}, optional
266273 Sort stability. If ``True``, the returned array will maintain the
267274 relative order of `a` values which compare as equal. The same behavior
268275 applies when set to ``False`` or ``None``.
269276 Internally, this option selects ``kind="stable"``.
277+
270278 Default: ``None``.
271279
272280 Returns
0 commit comments