Kaydet (Commit) d0e5b766 authored tarafından Walter Dörwald's avatar Walter Dörwald

Fix typo in docstring for Calendar.itermonthdays().

üst a53800e0
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment