mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-03 14:49:07 +00:00
first commit
This commit is contained in:
22
.venv/Lib/site-packages/pandas/_libs/tslibs/ccalendar.pxd
Normal file
22
.venv/Lib/site-packages/pandas/_libs/tslibs/ccalendar.pxd
Normal file
@ -0,0 +1,22 @@
|
||||
from cython cimport Py_ssize_t
|
||||
from numpy cimport (
|
||||
int32_t,
|
||||
int64_t,
|
||||
)
|
||||
|
||||
ctypedef (int32_t, int32_t, int32_t) iso_calendar_t
|
||||
|
||||
cdef int dayofweek(int y, int m, int d) nogil
|
||||
cdef bint is_leapyear(int64_t year) nogil
|
||||
cpdef int32_t get_days_in_month(int year, Py_ssize_t month) nogil
|
||||
cpdef int32_t get_week_of_year(int year, int month, int day) nogil
|
||||
cpdef iso_calendar_t get_iso_calendar(int year, int month, int day) nogil
|
||||
cpdef int32_t get_day_of_year(int year, int month, int day) nogil
|
||||
cpdef int get_lastbday(int year, int month) nogil
|
||||
cpdef int get_firstbday(int year, int month) nogil
|
||||
|
||||
cdef int64_t DAY_NANOS
|
||||
cdef int64_t HOUR_NANOS
|
||||
cdef dict c_MONTH_NUMBERS
|
||||
|
||||
cdef int32_t* month_offset
|
Reference in New Issue
Block a user