mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
13 lines
237 B
Cython
13 lines
237 B
Cython
from numpy cimport int64_t
|
|
|
|
|
|
cpdef to_offset(object obj)
|
|
cdef bint is_offset_object(object obj)
|
|
cdef bint is_tick_object(object obj)
|
|
|
|
cdef class BaseOffset:
|
|
cdef readonly:
|
|
int64_t n
|
|
bint normalize
|
|
dict _cache
|