From f7d4688af45976e7d79c21bb5bdcc4ab6cee7a90 Mon Sep 17 00:00:00 2001 From: Piyush Jaipuriayar Date: Tue, 15 Jan 2019 10:51:05 +0530 Subject: DOC: Document NPY_SORTKIND parameter in PyArray_Sort (#12606) --- doc/source/reference/c-api.array.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/source/reference/c-api.array.rst') diff --git a/doc/source/reference/c-api.array.rst b/doc/source/reference/c-api.array.rst index 205483f14..7c298e118 100644 --- a/doc/source/reference/c-api.array.rst +++ b/doc/source/reference/c-api.array.rst @@ -1904,10 +1904,10 @@ Item selection and manipulation all values are clipped to the region [0, len(*op*) ). -.. c:function:: PyObject* PyArray_Sort(PyArrayObject* self, int axis) +.. c:function:: PyObject* PyArray_Sort(PyArrayObject* self, int axis, NPY_SORTKIND kind) - Equivalent to :meth:`ndarray.sort` (*self*, *axis*). Return an array with - the items of *self* sorted along *axis*. + Equivalent to :meth:`ndarray.sort` (*self*, *axis*, *kind*). Return an array with + the items of *self* sorted along *axis*.Array is sorted according to *kind* which is an integer/enum pointing to the type of sorting algorithms used. .. c:function:: PyObject* PyArray_ArgSort(PyArrayObject* self, int axis) -- cgit v1.2.1