changeset: 98044:5bfcccf229c4 branch: 3.5 parent: 98042:e8f5502f7724 user: Victor Stinner date: Fri Sep 18 13:59:09 2015 +0200 files: Misc/NEWS description: Issue #25155: document the bugfix in Misc/NEWS Oops, I forgot to document my change. diff -r e8f5502f7724 -r 5bfcccf229c4 Misc/NEWS --- a/Misc/NEWS Fri Sep 18 13:44:11 2015 +0200 +++ b/Misc/NEWS Fri Sep 18 13:59:09 2015 +0200 @@ -14,6 +14,10 @@ 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.