Skip to content

Commit b4a8e5f

Browse files
authored
CLN: unify some fused types (#43824)
1 parent 62d1f5c commit b4a8e5f

File tree

8 files changed

+226
-267
lines changed

8 files changed

+226
-267
lines changed

pandas/_libs/algos.pxd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from pandas._libs.util cimport numeric
1+
from pandas._libs.dtypes cimport numeric_t
22

33

4-
cdef numeric kth_smallest_c(numeric* arr, Py_ssize_t k, Py_ssize_t n) nogil
4+
cdef numeric_t kth_smallest_c(numeric_t* arr, Py_ssize_t k, Py_ssize_t n) nogil
55

66
cdef enum TiebreakEnumType:
77
TIEBREAK_AVERAGE

0 commit comments

Comments
 (0)