diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-21 14:26:35 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-21 14:26:35 (GMT) |
commit | 85710a40e7e9eab86060bedc3762ccf9ca8d26ca (patch) | |
tree | 34df432ef5160f2bff895cca080e63760357d376 | |
parent | e418d760897cc6f6f4dedb364f80f3f52525ffa6 (diff) | |
download | cpython-85710a40e7e9eab86060bedc3762ccf9ca8d26ca.zip cpython-85710a40e7e9eab86060bedc3762ccf9ca8d26ca.tar.gz cpython-85710a40e7e9eab86060bedc3762ccf9ca8d26ca.tar.bz2 |
#15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAXYEAR. Patch by Cédric Krier.
-rw-r--r-- | Lib/calendar.py | 6 | ||||
-rw-r--r-- | Lib/test/test_calendar.py | 6 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
3 files changed, 14 insertions, 1 deletions
diff --git a/Lib/calendar.py b/Lib/calendar.py index 0301d6b..3bbf399 100644 --- a/Lib/calendar.py +++ b/Lib/calendar.py @@ -161,7 +161,11 @@ class Calendar(object): oneday = datetime.timedelta(days=1) while True: yield date - date += oneday + try: + date += oneday + except OverflowError: + # Adding one day could fail after datetime.MAXYEAR + break if date.month != month and date.weekday() == self.firstweekday: break diff --git a/Lib/test/test_calendar.py b/Lib/test/test_calendar.py index d3093ac..948a119 100644 --- a/Lib/test/test_calendar.py +++ b/Lib/test/test_calendar.py @@ -5,6 +5,7 @@ from test import support from test.script_helper import assert_python_ok import time import locale +import datetime result_2004_text = """ 2004 @@ -265,6 +266,11 @@ class CalendarTestCase(unittest.TestCase): new_october = calendar.TextCalendar().formatmonthname(2010, 10, 10) self.assertEqual(old_october, new_october) + def test_itermonthdates(self): + # ensure itermonthdates doesn't overflow after datetime.MAXYEAR + # see #15421 + list(calendar.Calendar().itermonthdates(datetime.MAXYEAR, 12)) + class MonthCalendarTestCase(unittest.TestCase): def setUp(self): @@ -120,6 +120,9 @@ Core and Builtins Library ------- +- Issue #15421: fix an OverflowError in Calendar.itermonthdates() after + datetime.MAXYEAR. Patch by Cédric Krier. + - Issue #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements 'meta' and 'param'. |