]> granicus.if.org Git - python/commitdiff
Issue #28253: Added a NEWS entry.
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Wed, 28 Sep 2016 00:34:17 +0000 (20:34 -0400)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Wed, 28 Sep 2016 00:34:17 +0000 (20:34 -0400)
Misc/NEWS

index 67b2274958f0031f27d7cac3bf6cd5acc54c5ef7..8887d5cc5dcec1250920bff78d3c410dd40baaa1 100644 (file)
--- 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.