Home
last modified time | relevance | path

Searched refs:_days_in_month (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Demo/classes/
DDates.py73 def _days_in_month(month, year): # number of days in month of year function
111 dbm = dbm - _days_in_month(month, year)
124 dim = _days_in_month(month, year)
/external/python/cpython3/Lib/
Ddatetime.py46 def _days_in_month(year, month): function
61 dim = _days_in_month(year, month)
139 assert 0 <= n < _days_in_month(year, month)
404 dim = _days_in_month(year, month)
2463 _date_class, _days_before_month, _days_before_year, _days_in_month,
/external/python/cpython2/Modules/
Ddatetimemodule.c165 static int _days_in_month[] = { variable
197 return _days_in_month[month]; in days_in_month()
/external/python/cpython3/Modules/
D_datetimemodule.c193 static const int _days_in_month[] = { variable
225 return _days_in_month[month]; in days_in_month()