diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-27 20:34:11 -0400 |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-27 20:34:11 -0400 |
commit | 0c6974d9349d590bfefdcb339a0666f8182b5881 (patch) | |
tree | 5365a8f154a2d0a6d1fdf11900302ec6d751e475 | |
parent | 957b75699fd1ed2eb18e8f7fa6fee1062fabad68 (diff) | |
download | cpython-git-0c6974d9349d590bfefdcb339a0666f8182b5881.tar.gz |
Issue #28253: Added a NEWS entry.
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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. |