diff options
author | Walter Dörwald <walter@livinglogic.de> | 2008-02-07 19:58:37 +0000 |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2008-02-07 19:58:37 +0000 |
commit | ec4301e60f8380d696115b598fea88cea239947c (patch) | |
tree | 0242af2d8a6d4e56b2fa01180a0cdbec5f821c42 | |
parent | 9e5e027aec722edd5b40aa3e94f4b9dd80eaac62 (diff) | |
download | cpython-git-ec4301e60f8380d696115b598fea88cea239947c.tar.gz |
Backport r60653:
Fix typo in docstring for Calendar.itermonthdays().
-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 0461523261..3190b72390 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: |