Home
last modified time | relevance | path

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

/external/python/cpython2/Demo/classes/
DDates.py62 def _is_leap(year): # 1 if leap year, else 0 function
68 return 365 + _is_leap(year)
74 if month == 2 and _is_leap(year): return 29
78 return _DAYS_BEFORE_MONTH[month-1] + (month > 2 and _is_leap(year))