[Python-checkins] python/dist/src/Lib calendar.py,1.35,1.35.2.1

rhettinger@users.sourceforge.net rhettinger at users.sourceforge.net
Tue May 10 05:22:24 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12302

Modified Files:
      Tag: release24-maint
	calendar.py 
Log Message:
SF bug #1193890:  calendar.weekheader not found in __all__



Index: calendar.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/calendar.py,v
retrieving revision 1.35
retrieving revision 1.35.2.1
diff -u -d -r1.35 -r1.35.2.1
--- calendar.py	13 Nov 2004 16:18:31 -0000	1.35
+++ calendar.py	10 May 2005 03:22:21 -0000	1.35.2.1
@@ -10,7 +10,8 @@
 __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



More information about the Python-checkins mailing list