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

index 736bd233add9265adb7808b2085fb91354356f47..61af0fd19b3e2b3bfb23fb2ee97db0f5d3442d91 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: