diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-28 00:34:17 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-28 00:34:17 (GMT) |
commit | 1dc7aa4d2ee16f3a4e86ce9c64558eecc43e7a89 (patch) | |
tree | d33a049c37b30039555f1a7cbab05cd775bc2810 /Misc | |
parent | e3fd248c771e1a8bf337a4a307dacf1e85106611 (diff) | |
download | cpython-1dc7aa4d2ee16f3a4e86ce9c64558eecc43e7a89.zip cpython-1dc7aa4d2ee16f3a4e86ce9c64558eecc43e7a89.tar.gz cpython-1dc7aa4d2ee16f3a4e86ce9c64558eecc43e7a89.tar.bz2 |
Issue #28253: Added a NEWS entry.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -44,6 +44,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. |