You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
275 B
14 lines
275 B
from datetime import (
|
|
datetime,
|
|
tzinfo,
|
|
)
|
|
|
|
import numpy as np
|
|
|
|
DT64NS_DTYPE: np.dtype
|
|
TD64NS_DTYPE: np.dtype
|
|
|
|
def precision_from_unit(
|
|
unit: str,
|
|
) -> tuple[int, int]: ... # (int64_t, _)
|
|
def localize_pydatetime(dt: datetime, tz: tzinfo | None) -> datetime: ...
|
|
|