diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-02-10 09:34:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-02-10 09:34:02 (GMT) |
commit | b67f0967386a9c9041166d2bbe0a421bd81e10bc (patch) | |
tree | 71798fffbe09bdb3757bf1928664aba261a695e7 /Misc | |
parent | 57fe245e8c88f49899cf81b0efe289f599c0a249 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |