From: Walter Dörwald Date: Thu, 7 Feb 2008 19:57:32 +0000 (+0000) Subject: Fix typo in docstring for Calendar.itermonthdays(). X-Git-Tag: v2.6a1~237 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0e5b766f1ffe2baf160d887c361adc588250179;p=python Fix typo in docstring for Calendar.itermonthdays(). --- diff --git a/Lib/calendar.py b/Lib/calendar.py index 736bd233ad..61af0fd19b 100644 --- a/Lib/calendar.py +++ b/Lib/calendar.py @@ -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: