summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2016-09-28 00:34:17 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2016-09-28 00:34:17 (GMT)
commit1dc7aa4d2ee16f3a4e86ce9c64558eecc43e7a89 (patch)
treed33a049c37b30039555f1a7cbab05cd775bc2810
parente3fd248c771e1a8bf337a4a307dacf1e85106611 (diff)
downloadcpython-1dc7aa4d2ee16f3a4e86ce9c64558eecc43e7a89.zip
cpython-1dc7aa4d2ee16f3a4e86ce9c64558eecc43e7a89.tar.gz
cpython-1dc7aa4d2ee16f3a4e86ce9c64558eecc43e7a89.tar.bz2
Issue #28253: Added a NEWS entry.
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 67b2274..8887d5c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.