summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-09-18 13:59:09 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-09-18 13:59:09 +0200
commit02d6a25beaa3922f487e984a852c2ef2127d0a7f (patch)
treee46f9b0e0c5dd1f3992d0d3977eb32cf27322e91
parent4a0d1e7c36f8ce2720fa6121b61bd048a87714ed (diff)
downloadcpython-git-02d6a25beaa3922f487e984a852c2ef2127d0a7f.tar.gz
Issue #25155: document the bugfix in Misc/NEWS
Oops, I forgot to document my change.
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 02917a1d17..191052946a 100644
--- 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.