[Python-checkins] r43717 - python/trunk/Lib/calendar.py

anthony.baxter python-checkins at python.org
Fri Apr 7 07:41:13 CEST 2006


Author: anthony.baxter
Date: Fri Apr  7 07:41:13 2006
New Revision: 43717

Modified:
   python/trunk/Lib/calendar.py
Log:
missing 'self' from TextCalendar.prweek.


Modified: python/trunk/Lib/calendar.py
==============================================================================
--- python/trunk/Lib/calendar.py	(original)
+++ python/trunk/Lib/calendar.py	Fri Apr  7 07:41:13 2006
@@ -256,7 +256,7 @@
     similar to the UNIX program cal.
     """
 
-    def prweek(theweek, width):
+    def prweek(self, theweek, width):
         """
         Print a single week (no newline).
         """


More information about the Python-checkins mailing list