diff options
author | Raymond Hettinger <python@rcn.com> | 2005-05-10 03:22:21 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-05-10 03:22:21 (GMT) |
commit | 71603427ae76a36bb9e405087a8537a06d06409b (patch) | |
tree | 4428b84082e4204c7e3eb0f048b1e8aba0573258 /Lib | |
parent | 53fa7ee78273f01b3b8ba9ccc2ab0ec531f2e42e (diff) | |
download | cpython-71603427ae76a36bb9e405087a8537a06d06409b.zip cpython-71603427ae76a36bb9e405087a8537a06d06409b.tar.gz cpython-71603427ae76a36bb9e405087a8537a06d06409b.tar.bz2 |
SF bug #1193890: calendar.weekheader not found in __all__
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/calendar.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/calendar.py b/Lib/calendar.py index 7081389..3ffcff5 100644 --- a/Lib/calendar.py +++ b/Lib/calendar.py @@ -10,7 +10,8 @@ import datetime __all__ = ["error","setfirstweekday","firstweekday","isleap", "leapdays","weekday","monthrange","monthcalendar", "prmonth","month","prcal","calendar","timegm", - "month_name", "month_abbr", "day_name", "day_abbr"] + "month_name", "month_abbr", "day_name", "day_abbr", + "weekheader"] # Exception raised for bad input (with string parameter for details) error = ValueError |