diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-30 11:25:22 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-30 11:25:22 (GMT) |
commit | 1753d2255e14e1a768e4db63e5353191ad1e54e1 (patch) | |
tree | 88416765d2dd50268cf305a93c83eda4e9fe920a /Misc | |
parent | 88c56cbba5b7485aa2a0aac75a91b4c273253eca (diff) | |
parent | 79851d755bf4edacd3f423c5e2cca21d0c07c3b6 (diff) | |
download | cpython-1753d2255e14e1a768e4db63e5353191ad1e54e1.zip cpython-1753d2255e14e1a768e4db63e5353191ad1e54e1.tar.gz cpython-1753d2255e14e1a768e4db63e5353191ad1e54e1.tar.bz2 |
Issue #21552: Fixed possible integer overflow of too long string lengths in
the tkinter module on 64-bit platforms.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -89,6 +89,9 @@ Core and Builtins Library ------- +- Issue #21552: Fixed possible integer overflow of too long string lengths in + the tkinter module on 64-bit platforms. + - Issue #14315: The zipfile module now ignores extra fields in the central directory that are too short to be parsed instead of letting a struct.unpack error bubble up as this "bad data" appears in many real world zip files in |