summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-05-13 07:32:41 -0600
committerGitHub <noreply@github.com>2020-05-13 07:32:41 -0600
commit56f444a0c50d949bf9eba653bb91346fdb8f1069 (patch)
tree237c4f7ae3a88011c9189419033b99734e421729
parent1327a530ea88b83cac8591a402a61bd9a00ecd0a (diff)
parent2c06400455b000e25549b30d85630a4df421cb78 (diff)
downloadnumpy-56f444a0c50d949bf9eba653bb91346fdb8f1069.tar.gz
Merge pull request #16223 from mattip/pxd-fix
BUG: fix signature of PyArray_SearchSorted in __init__.pxd
-rw-r--r--numpy/__init__.pxd2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/__init__.pxd b/numpy/__init__.pxd
index 7fc3d61e7..d5c50d9bf 100644
--- a/numpy/__init__.pxd
+++ b/numpy/__init__.pxd
@@ -607,7 +607,7 @@ cdef extern from "numpy/arrayobject.h":
object PyArray_Choose (ndarray, object, ndarray, NPY_CLIPMODE)
int PyArray_Sort (ndarray, int, NPY_SORTKIND)
object PyArray_ArgSort (ndarray, int, NPY_SORTKIND)
- object PyArray_SearchSorted (ndarray, object, NPY_SEARCHSIDE)
+ object PyArray_SearchSorted (ndarray, object, NPY_SEARCHSIDE, object)
object PyArray_ArgMax (ndarray, int, ndarray)
object PyArray_ArgMin (ndarray, int, ndarray)
object PyArray_Reshape (ndarray, object)