summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-02-10 10:34:02 +0100
committerVictor Stinner <victor.stinner@gmail.com>2017-02-10 10:34:02 +0100
commitefb9e6050c840ddb095b372abd5a6d04c73aff2b (patch)
tree9bf843ebe6246952c1dcf621af7a5cf506409c89 /Misc
parentc7a3f78cc193bfa7fc874f49ec2e0799b32da817 (diff)
downloadcpython-efb9e6050c840ddb095b372abd5a6d04c73aff2b.tar.gz
Fix datetime.fromtimestamp(): check bounds
Issue #29100: Fix datetime.fromtimestamp() regression introduced in Python 3.6.0: check minimum and maximum years.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cec19c6f52..d79ff2450d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,6 +57,9 @@ Extension Modules
Library
-------
+- Issue #29100: Fix datetime.fromtimestamp() regression introduced in Python
+ 3.6.0: check minimum and maximum years.
+
- Issue #29519: Fix weakref spewing exceptions during interpreter shutdown
when used with a rare combination of multiprocessing and custom codecs.