diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-30 14:23:52 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-30 14:23:52 +0300 |
commit | 2a0220b18af5e93fbe6c3e43aab5482435fc24bd (patch) | |
tree | fb671429415c3096a9664985cfd78964a89aa0b0 /Misc/NEWS | |
parent | Add tests for getint, getdouble and getboolean methods of the tkapp object. (diff) | |
download | cpython-2a0220b18af5e93fbe6c3e43aab5482435fc24bd.tar.gz cpython-2a0220b18af5e93fbe6c3e43aab5482435fc24bd.tar.bz2 cpython-2a0220b18af5e93fbe6c3e43aab5482435fc24bd.zip |
Issue #21552: Fixed possible integer overflow of too long string lengths in
the Tkinter module on 64-bit platforms.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS index 3538f88cc43..1508fa7849b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -18,6 +18,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 |