]> granicus.if.org Git - python/commitdiff
Backport r60653:
authorWalter Dörwald <walter@livinglogic.de>
Thu, 7 Feb 2008 19:58:37 +0000 (19:58 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Thu, 7 Feb 2008 19:58:37 +0000 (19:58 +0000)
Fix typo in docstring for Calendar.itermonthdays().

Lib/calendar.py

index 0461523261f5092c9b04f927273756d35e0e2775..3190b72390a2aec018a8c4444af64bb413cfd9ac 100644 (file)
@@ -179,8 +179,8 @@ class Calendar(object):
 
     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: