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.
11 lines
351 B
11 lines
351 B
from cpython.datetime cimport tzinfo
|
|
from numpy cimport int64_t
|
|
|
|
|
|
cdef int64_t tz_convert_utc_to_tzlocal(
|
|
int64_t utc_val, tzinfo tz, bint* fold=*
|
|
) except? -1
|
|
cpdef int64_t tz_convert_from_utc_single(int64_t val, tzinfo tz)
|
|
cdef int64_t tz_localize_to_utc_single(
|
|
int64_t val, tzinfo tz, object ambiguous=*, object nonexistent=*
|
|
) except? -1
|
|
|