Home
last modified time | relevance | path

Searched refs:_DAYS_IN_MONTH (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Demo/classes/
DDates.py51 _DAYS_IN_MONTH = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ] variable
55 for dim in _DAYS_IN_MONTH:
75 return _DAYS_IN_MONTH[month-1]
/external/python/cpython3/Lib/
Ddatetime.py28 _DAYS_IN_MONTH = [-1, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] variable
32 for dim in _DAYS_IN_MONTH[1:]:
51 return _DAYS_IN_MONTH[month]
137 preceding -= _DAYS_IN_MONTH[month] + (month == 2 and leapyear)
2459 del (_DAYNAMES, _DAYS_BEFORE_MONTH, _DAYS_IN_MONTH, _DI100Y, _DI400Y,