changeset: 104119:55f11196c949 branch: 3.5 parent: 104115:c439bce36bf2 user: Alexander Belopolsky date: Tue Sep 27 20:34:11 2016 -0400 files: Misc/NEWS description: Issue #28253: Added a NEWS entry. diff -r c439bce36bf2 -r 55f11196c949 Misc/NEWS --- a/Misc/NEWS Tue Sep 27 20:26:39 2016 -0400 +++ b/Misc/NEWS Tue Sep 27 20:34:11 2016 -0400 @@ -83,6 +83,13 @@ 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.