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

Backport r60653:

Fix typo in docstring for Calendar.itermonthdays().
üst 9e5e027a
......@@ -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