From: Raymond Hettinger Date: Tue, 10 May 2005 03:22:21 +0000 (+0000) Subject: SF bug #1193890: calendar.weekheader not found in __all__ X-Git-Tag: v2.4.2c1~225 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71603427ae76a36bb9e405087a8537a06d06409b;p=thirdparty%2FPython%2Fcpython.git SF bug #1193890: calendar.weekheader not found in __all__ --- diff --git a/Lib/calendar.py b/Lib/calendar.py index 70813896d171..3ffcff5957e2 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