[Python-checkins] r60654 - python/branches/release25-maint/Lib/calendar.py

walter.doerwald python-checkins at python.org
Thu Feb 7 20:58:37 CET 2008


Author: walter.doerwald
Date: Thu Feb  7 20:58:37 2008
New Revision: 60654

Modified:
   python/branches/release25-maint/Lib/calendar.py
Log:
Backport r60653:
Fix typo in docstring for Calendar.itermonthdays().


Modified: python/branches/release25-maint/Lib/calendar.py
==============================================================================
--- python/branches/release25-maint/Lib/calendar.py	(original)
+++ python/branches/release25-maint/Lib/calendar.py	Thu Feb  7 20:58:37 2008
@@ -179,8 +179,8 @@
 
     def itermonthdays(self, year, month):
         """
-        Like itermonthdates(), but will yield day numbers tuples. For days
-        outside the specified month the day number is 0.
+        Like itermonthdates(), but will yield day numbers. For days outside
+        the specified month the day number is 0.
         """
         for date in self.itermonthdates(year, month):
             if date.month != month:


More information about the Python-checkins mailing list