mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
11 lines
269 B
Python
11 lines
269 B
Python
import numpy as np
|
|
|
|
def array_strptime(
|
|
values: np.ndarray, # np.ndarray[object]
|
|
fmt: str | None,
|
|
exact: bool = True,
|
|
errors: str = "raise",
|
|
) -> tuple[np.ndarray, np.ndarray]: ...
|
|
|
|
# first ndarray is M8[ns], second is object ndarray of tzinfo | None
|