File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,11 @@ def is_string_array(values: np.ndarray, skipna: bool = ...): ...
63
63
def is_float_array (values : np .ndarray , skipna : bool = ...): ...
64
64
def is_integer_array (values : np .ndarray , skipna : bool = ...): ...
65
65
def is_bool_array (values : np .ndarray , skipna : bool = ...): ...
66
- def fast_multiget (mapping : dict , keys : np .ndarray , default = ...) -> np .ndarray : ...
66
+ def fast_multiget (
67
+ mapping : dict ,
68
+ keys : np .ndarray , # object[:]
69
+ default = ...,
70
+ ) -> np .ndarray : ...
67
71
def fast_unique_multiple_list_gen (gen : Generator , sort : bool = ...) -> list : ...
68
72
def fast_unique_multiple_list (lists : list , sort : bool | None = ...) -> list : ...
69
73
def map_infer (
Original file line number Diff line number Diff line change @@ -3088,7 +3088,7 @@ def to_object_array_tuples(rows: object) -> np.ndarray:
3088
3088
3089
3089
@ cython.wraparound (False )
3090
3090
@ cython.boundscheck (False )
3091
- def fast_multiget (dict mapping , ndarray keys , default = np.nan) -> np.ndarray:
3091
+ def fast_multiget (dict mapping , object[:] keys , default = np.nan) -> np.ndarray:
3092
3092
cdef:
3093
3093
Py_ssize_t i , n = len (keys)
3094
3094
object val
You can’t perform that action at this time.
0 commit comments