1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import numpy as np
|
| from pandas._typing import npt
|
| class OutOfBoundsDatetime(ValueError): ...
| class OutOfBoundsTimedelta(ValueError): ...
|
| # only exposed for testing
| def py_get_unit_from_dtype(dtype: np.dtype): ...
| def py_td64_to_tdstruct(td64: int, unit: int) -> dict: ...
| def astype_overflowsafe(
| arr: np.ndarray,
| dtype: np.dtype,
| copy: bool = ...,
| round_ok: bool = ...,
| is_coerce: bool = ...,
| ) -> np.ndarray: ...
| def is_unitless(dtype: np.dtype) -> bool: ...
| def compare_mismatched_resolutions(
| left: np.ndarray, right: np.ndarray, op
| ) -> npt.NDArray[np.bool_]: ...
|
|