8000 BUG: fix signature of PyArray_SearchSorted in __init__.pxd · numpy/numpy@2c06400 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2c06400

Browse files
committed
BUG: fix signature of PyArray_SearchSorted in __init__.pxd
1 parent beb031d commit 2c06400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/__init__.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ cdef extern from "numpy/arrayobject.h":
607607
object PyArray_Choose (ndarray, object, ndarray, NPY_CLIPMODE)
608608
int PyArray_Sort (ndarray, int, NPY_SORTKIND)
609609
object PyArray_ArgSort (ndarray, int, NPY_SORTKIND)
610-
object PyArray_SearchSorted (ndarray, object, NPY_SEARCHSIDE)
610+
object PyArray_SearchSorted (ndarray, object, NPY_SEARCHSIDE, object)
611611
object PyArray_ArgMax (ndarray, int, ndarray)
612612
object PyArray_ArgMin (ndarray, int, ndarray)
613613
object PyArray_Reshape (ndarray, object)

0 commit comments

Comments
 (0)
0