diff --git a/Misc/NEWS b/Misc/NEWS index 2fa9da51c7a..0eb2d3ad358 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -50,6 +50,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.