summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-08-21 18:38:21 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-08-21 18:38:21 (GMT)
commit9e6b97502f3a0c5f7d24e0b7f05dc9b41b0d0b85 (patch)
tree772f1f1b8b287cde7bdb62f974f33f9a242cf15d /Misc
parentf77b4b20e931dd0247a176db856723fe1203d32e (diff)
downloadcpython-9e6b97502f3a0c5f7d24e0b7f05dc9b41b0d0b85.zip
cpython-9e6b97502f3a0c5f7d24e0b7f05dc9b41b0d0b85.tar.gz
cpython-9e6b97502f3a0c5f7d24e0b7f05dc9b41b0d0b85.tar.bz2
Issue #17119: Fixed integer overflows when processing large strings and tuples
in the tkinter module.
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 f02c18e..be3e8e0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #17119: Fixed integer overflows when processing large strings and tuples
+ in the tkinter module.
+
- Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.
A pthread_atfork() child handler is used to seeded the PRNG with pid, time
and some stack data.