Home | History | Annotate | Download | only in Lib

Lines Matching full:weekday

37         f_weekday -- full weekday names (7-item list)
38 a_weekday -- abbreviated weekday names (7-item list)
288 first_weekday = datetime_date(year, 1, 1).weekday()
306 """Calculate the Julian day based on the ISO 8601 year, week, and weekday.
376 # weekday and julian defaulted to None so as to signal need to calculate
378 weekday = julian = None
435 weekday = locale_time.f_weekday.index(found_dict['A'].lower())
437 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
439 weekday = int(found_dict['w'])
440 if weekday == 0:
441 weekday = 6
443 weekday -= 1
445 weekday = int(found_dict['u'])
446 weekday -= 1
482 if iso_week is None or weekday is None:
484 "the ISO week directive '%V' and a weekday "
491 if weekday is None:
493 "the ISO year directive '%G' and a weekday "
510 if julian is None and weekday is not None:
513 julian = _calc_julian_from_U_or_W(year, week_of_year, weekday,
516 year, julian = _calc_julian_from_V(iso_year, iso_week, weekday + 1)
530 # calculated above with year/week/weekday) it will be accurate.
537 if weekday is None:
538 weekday = datetime_date(year, month, day).weekday()
554 weekday, julian, tz, tzname, gmtoff), fraction