Backport r60653:

Fix typo in docstring for Calendar.itermonthdays().
This commit is contained in:
Walter Dörwald 2008-02-07 19:58:37 +00:00
parent 9e5e027aec
commit ec4301e60f

View 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: