Searched refs:_days_in_month (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Demo/classes/ |
D | Dates.py | 73 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/ |
D | datetime.py | 46 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/ |
D | datetimemodule.c | 165 static int _days_in_month[] = { variable 197 return _days_in_month[month]; in days_in_month()
|
/external/python/cpython3/Modules/ |
D | _datetimemodule.c | 193 static const int _days_in_month[] = { variable 225 return _days_in_month[month]; in days_in_month()
|