diff options
author | Walter Dörwald <walter@livinglogic.de> | 2008-02-07 19:57:32 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2008-02-07 19:57:32 (GMT) |
commit | d0e5b766f1ffe2baf160d887c361adc588250179 (patch) | |
tree | 6a4688c6dc35323b39a36b22185aa9e98bfb9b2e /Lib | |
parent | a53800e02c934640fefe9b96aad8a93a42613296 (diff) | |
download | cpython-d0e5b766f1ffe2baf160d887c361adc588250179.zip cpython-d0e5b766f1ffe2baf160d887c361adc588250179.tar.gz cpython-d0e5b766f1ffe2baf160d887c361adc588250179.tar.bz2 |
Fix typo in docstring for Calendar.itermonthdays().
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/calendar.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/calendar.py b/Lib/calendar.py index 736bd23..61af0fd 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: |