summaryrefslogtreecommitdiffstats
path: root/Lib/calendar.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-01-16 06:49:30 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-01-16 06:49:30 (GMT)
commit4eb376c441f99e9ea50beae5309020a1469393ac (patch)
tree105bcf31b8d32853045c17bb3eebd80f1db01b73 /Lib/calendar.py
parent7978e10441e84482d3d28e7c449d68b77c6310b6 (diff)
downloadcpython-4eb376c441f99e9ea50beae5309020a1469393ac.zip
cpython-4eb376c441f99e9ea50beae5309020a1469393ac.tar.gz
cpython-4eb376c441f99e9ea50beae5309020a1469393ac.tar.bz2
Issue #23883: Add missing APIs to calendar.__all__
Patch by Joel Taddei and Jacek KoƂodziej.
Diffstat (limited to 'Lib/calendar.py')
-rw-r--r--Lib/calendar.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/calendar.py b/Lib/calendar.py
index 196a075..85baf2e 100644
--- a/Lib/calendar.py
+++ b/Lib/calendar.py
@@ -12,7 +12,9 @@ import locale as _locale
__all__ = ["IllegalMonthError", "IllegalWeekdayError", "setfirstweekday",
"firstweekday", "isleap", "leapdays", "weekday", "monthrange",
"monthcalendar", "prmonth", "month", "prcal", "calendar",
- "timegm", "month_name", "month_abbr", "day_name", "day_abbr"]
+ "timegm", "month_name", "month_abbr", "day_name", "day_abbr",
+ "Calendar", "TextCalendar", "HTMLCalendar", "LocaleTextCalendar",
+ "LocaleHTMLCalendar", "weekheader"]
# Exception raised for bad input (with string parameter for details)
error = ValueError