]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #28253: Added a NEWS entry.
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Wed, 28 Sep 2016 00:34:11 +0000 (20:34 -0400)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Wed, 28 Sep 2016 00:34:11 +0000 (20:34 -0400)
Misc/NEWS

index b6363b65a4122c8c48043f02013f9742a4312461..ad921cd7f8510ba3d802b46795878419cb7da456 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.