summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-09-21 14:26:35 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-09-21 14:26:35 (GMT)
commit85710a40e7e9eab86060bedc3762ccf9ca8d26ca (patch)
tree34df432ef5160f2bff895cca080e63760357d376 /Misc
parente418d760897cc6f6f4dedb364f80f3f52525ffa6 (diff)
downloadcpython-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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bebab93..74782aa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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'.