| calendar | index /usr/local/lib/python2.3/calendar.py |
Calendar printing functions
Note when comparing these calendars to the ones printed by cal(1): By
default, these calendars have Monday as the first day of the week, and
Sunday as the last (the European convention). Use setfirstweekday() to
set the first day of the week (0=Monday, 6=Sunday).
| Modules | ||||||
| ||||||
| Functions | ||
| ||
| Data | ||
| EPOCH = 1970 FRIDAY = 4 February = 2 January = 1 MONDAY = 0 SATURDAY = 5 SUNDAY = 6 THURSDAY = 3 TUESDAY = 1 WEDNESDAY = 2 __all__ = ['error', 'setfirstweekday', 'firstweekday', 'isleap', 'leapdays', 'weekday', 'monthrange', 'monthcalendar', 'prmonth', 'month', 'prcal', 'calendar', 'timegm', 'month_name', 'month_abbr', 'day_name', 'day_abbr'] day_abbr = <calendar._localized_day instance> day_name = <calendar._localized_day instance> mdays = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] month_abbr = <calendar._localized_month instance> month_name = <calendar._localized_month instance> | ||