]> granicus.if.org Git - python/commitdiff
Issue #25155: document the bugfix in Misc/NEWS
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 18 Sep 2015 11:59:09 +0000 (13:59 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 18 Sep 2015 11:59:09 +0000 (13:59 +0200)
Oops, I forgot to document my change.

Misc/NEWS

index 02917a1d179be1b79ebd0f87fd89d30a425d201a..191052946a2fe5c40dbe7d3126ab2da0de85c17a 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,6 +14,10 @@ Core and Builtins
 Library
 -------
 
+- Issue #25155: Fix datetime.datetime.now() and datetime.datetime.utcnow() on
+  Windows to support date after year 2038. It was a regression introduced in
+  Python 3.5.0.
+
 - Issue #25108: Omitted internal frames in traceback functions print_stack(),
   format_stack(), and extract_stack() called without arguments.