diff options
Diffstat (limited to 'Lib/calendar.py')
| -rw-r--r-- | Lib/calendar.py | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/calendar.py b/Lib/calendar.py index 1d15081133..2efb1c496b 100644 --- a/Lib/calendar.py +++ b/Lib/calendar.py @@ -10,6 +10,10 @@ set the first day of the week (0=Monday, 6=Sunday)."""  # Import functions and variables from time module  from time import localtime, mktime +__all__ = ["error","setfirstweekday","firstweekday","isleap", +           "leapdays","weekday","monthrange","monthcalendar", +           "prmonth","month","prcal","calendar","timegm"] +  # Exception raised for bad input (with string parameter for details)  error = ValueError  | 
