summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-08-21 18:43:08 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-08-21 18:43:08 (GMT)
commit4e4088d2734e9f53b4947b8fc1024c4884d26c5e (patch)
treeef00bfb0a0876b1ab2f87ebf2ff8b6de283048f8 /Misc
parent6acbe2aaa385ada342ac9421333fce083041f06f (diff)
parent9e6b97502f3a0c5f7d24e0b7f05dc9b41b0d0b85 (diff)
downloadcpython-4e4088d2734e9f53b4947b8fc1024c4884d26c5e.zip
cpython-4e4088d2734e9f53b4947b8fc1024c4884d26c5e.tar.gz
cpython-4e4088d2734e9f53b4947b8fc1024c4884d26c5e.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 b95ce2d..602d27f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,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.