Searched refs:_is_leap (Results 1 – 2 of 2) sorted by relevance
62 def _is_leap(year): # 1 if leap year, else 0 function68 return 365 + _is_leap(year)74 if month == 2 and _is_leap(year): return 2978 return _DAYS_BEFORE_MONTH[month-1] + (month > 2 and _is_leap(year))
37 def _is_leap(year): function49 if month == 2 and _is_leap(year):56 return _DAYS_BEFORE_MONTH[month] + (month > 2 and _is_leap(year))132 assert leapyear == _is_leap(year)2464 _format_time, _format_offset, _is_leap, _isoweek1monday, _math,