Home
last modified time | relevance | path

Searched refs:_DAYS_BEFORE_MONTH (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Demo/classes/
DDates.py53 _DAYS_BEFORE_MONTH = [] variable
56 _DAYS_BEFORE_MONTH.append(dbm)
78 return _DAYS_BEFORE_MONTH[month-1] + (month > 2 and _is_leap(year))
/external/python/cpython3/Lib/zoneinfo/
D_zoneinfo.py546 _DAYS_BEFORE_MONTH = ( variable in _CalendarOffset
583 + cls._DAYS_BEFORE_MONTH[month]
/external/python/cpython3/Lib/
Ddatetime.py34 _DAYS_BEFORE_MONTH = [-1] # -1 is a placeholder for indexing purposes. variable
37 _DAYS_BEFORE_MONTH.append(dbm)
60 return _DAYS_BEFORE_MONTH[month] + (month > 2 and _is_leap(year))
138 preceding = _DAYS_BEFORE_MONTH[month] + (month > 2 and leapyear)
2542 del (_DAYNAMES, _DAYS_BEFORE_MONTH, _DAYS_IN_MONTH, _DI100Y, _DI400Y,