From: Alexander Belopolsky Date: Wed, 28 Sep 2016 00:34:11 +0000 (-0400) Subject: Issue #28253: Added a NEWS entry. X-Git-Tag: v3.6.0b2~103^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c6974d9349d590bfefdcb339a0666f8182b5881;p=thirdparty%2FPython%2Fcpython.git Issue #28253: Added a NEWS entry. --- diff --git a/Misc/NEWS b/Misc/NEWS index b6363b65a412..ad921cd7f851 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -83,6 +83,13 @@ Core and Builtins Library ------- +- Issue #28253: Fixed calendar functions for extreme months: 0001-01 + and 9999-12. + + Methods itermonthdays() and itermonthdays2() are reimplemented so + that they don't call itermonthdates() which can cause datetime.date + under/overflow. + - Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress(). Original patch by John Leitch.