summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-27 06:56:11 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-27 06:56:11 (GMT)
commit81be27d53e33b6eb5cedf75c17038673e1555145 (patch)
treef8f495bc5cbda058fb2cacb781dbdcbc61284bc9 /Misc
parent045ee06ae91a1503a8d512929c54e16deabfe9a8 (diff)
downloadcpython-81be27d53e33b6eb5cedf75c17038673e1555145.zip
cpython-81be27d53e33b6eb5cedf75c17038673e1555145.tar.gz
cpython-81be27d53e33b6eb5cedf75c17038673e1555145.tar.bz2
Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL
pseudo-random number generator on fork().
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 6d01b35..fe56252 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,9 @@ Core and Builtins
Library
-------
+- Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL
+ pseudo-random number generator on fork().
+
- Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than
100 headers are read. Adapted from patch by Jyrki Pulliainen.