summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2016-09-28 00:33:58 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2016-09-28 00:33:58 (GMT)
commitf2a913e53bcb10fe6a90d2a57e2d8c584892355e (patch)
treeffa4ab072d39f386f320343123ab68b18164f2f9
parent4e7b4e8c18b82774d273c4990330f0e870d8a492 (diff)
downloadcpython-f2a913e53bcb10fe6a90d2a57e2d8c584892355e.zip
cpython-f2a913e53bcb10fe6a90d2a57e2d8c584892355e.tar.gz
cpython-f2a913e53bcb10fe6a90d2a57e2d8c584892355e.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 2fa9da5..0eb2d3a 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.