@@ -45,22 +45,24 @@ def is_scalar(val: object) -> bool: ...
4545def is_list_like (obj : object , allow_sets : bool = ...) -> bool : ...
4646def is_pyarrow_array (obj : object ) -> bool : ...
4747def is_period (val : object ) -> TypeGuard [Period ]: ...
48- def is_interval (val : object ) -> TypeGuard [Interval ]: ...
49- def is_decimal (val : object ) -> TypeGuard [Decimal ]: ...
50- def is_complex (val : object ) -> TypeGuard [complex ]: ...
51- def is_bool (val : object ) -> TypeGuard [bool | np .bool_ ]: ...
52- def is_integer (val : object ) -> TypeGuard [int | np .integer ]: ...
48+ def is_interval (obj : object ) -> TypeGuard [Interval ]: ...
49+ def is_decimal (obj : object ) -> TypeGuard [Decimal ]: ...
50+ def is_complex (obj : object ) -> TypeGuard [complex ]: ...
51+ def is_bool (obj : object ) -> TypeGuard [bool | np .bool_ ]: ...
52+ def is_integer (obj : object ) -> TypeGuard [int | np .integer ]: ...
5353def is_int_or_none (obj ) -> bool : ...
54- def is_float (val : object ) -> TypeGuard [float ]: ...
54+ def is_float (obj : object ) -> TypeGuard [float ]: ...
5555def is_interval_array (values : np .ndarray ) -> bool : ...
56- def is_datetime64_array (values : np .ndarray ) -> bool : ...
57- def is_timedelta_or_timedelta64_array (values : np .ndarray ) -> bool : ...
56+ def is_datetime64_array (values : np .ndarray , skipna : bool = True ) -> bool : ...
57+ def is_timedelta_or_timedelta64_array (
58+ values : np .ndarray , skipna : bool = True
59+ ) -> bool : ...
5860def is_datetime_with_singletz_array (values : np .ndarray ) -> bool : ...
5961def is_time_array (values : np .ndarray , skipna : bool = ...): ...
6062def is_date_array (values : np .ndarray , skipna : bool = ...): ...
6163def is_datetime_array (values : np .ndarray , skipna : bool = ...): ...
6264def is_string_array (values : np .ndarray , skipna : bool = ...): ...
63- def is_float_array (values : np .ndarray , skipna : bool = ... ): ...
65+ def is_float_array (values : np .ndarray ): ...
6466def is_integer_array (values : np .ndarray , skipna : bool = ...): ...
6567def is_bool_array (values : np .ndarray , skipna : bool = ...): ...
6668def fast_multiget (
@@ -185,7 +187,7 @@ def count_level_2d(
185187 max_bin : int ,
186188) -> np .ndarray : ... # np.ndarray[np.int64, ndim=2]
187189def get_level_sorter (
188- label : np .ndarray , # const int64_t[:]
190+ codes : np .ndarray , # const int64_t[:]
189191 starts : np .ndarray , # const intp_t[:]
190192) -> np .ndarray : ... # np.ndarray[np.intp, ndim=1]
191193def generate_bins_dt64 (
0 commit comments