summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-02-10 09:34:02 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-02-10 09:34:02 (GMT)
commitb67f0967386a9c9041166d2bbe0a421bd81e10bc (patch)
tree71798fffbe09bdb3757bf1928664aba261a695e7 /Misc
parent57fe245e8c88f49899cf81b0efe289f599c0a249 (diff)
downloadcpython-b67f0967386a9c9041166d2bbe0a421bd81e10bc.zip
cpython-b67f0967386a9c9041166d2bbe0a421bd81e10bc.tar.gz
cpython-b67f0967386a9c9041166d2bbe0a421bd81e10bc.tar.bz2
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 cec19c6..d79ff24 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.