Fix typo in docstring for Calendar.itermonthdays().
This commit is contained in:
parent
a53800e02c
commit
d0e5b766f1
|
@ -179,8 +179,8 @@ class Calendar(object):
|
||||||
|
|
||||||
def itermonthdays(self, year, month):
|
def itermonthdays(self, year, month):
|
||||||
"""
|
"""
|
||||||
Like itermonthdates(), but will yield day numbers tuples. For days
|
Like itermonthdates(), but will yield day numbers. For days outside
|
||||||
outside the specified month the day number is 0.
|
the specified month the day number is 0.
|
||||||
"""
|
"""
|
||||||
for date in self.itermonthdates(year, month):
|
for date in self.itermonthdates(year, month):
|
||||||
if date.month != month:
|
if date.month != month:
|
||||||
|
|
Loading…
Reference in New Issue