summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/calendar.py4
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: