changeset: 104118:7efba48299e9 user: Alexander Belopolsky date: Tue Sep 27 20:33:58 2016 -0400 files: Misc/NEWS description: Issue #28253: Added a NEWS entry. diff -r bc285a9ecc58 -r 7efba48299e9 Misc/NEWS --- a/Misc/NEWS Tue Sep 27 20:28:57 2016 -0400 +++ b/Misc/NEWS Tue Sep 27 20:33:58 2016 -0400 @@ -50,6 +50,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.