summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-12-18 17:22:24 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-12-18 17:22:24 (GMT)
commit41616300b1a29b2bf65071a7e117f34367126bcb (patch)
tree7099e9f9b0e600edc99b423dd8a858c3a8bb9fa6 /Misc
parentf3d35f0efe4bd669782e29a9ccf21570878ed319 (diff)
downloadcpython-41616300b1a29b2bf65071a7e117f34367126bcb.zip
cpython-41616300b1a29b2bf65071a7e117f34367126bcb.tar.gz
cpython-41616300b1a29b2bf65071a7e117f34367126bcb.tar.bz2
Issue #11870: threading: Properly reinitialize threads internal locks and
condition variables to avoid deadlocks in child processes.
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 455399c..5118afd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -86,6 +86,9 @@ Core and Builtins
Library
-------
+- Issue #11870: threading: Properly reinitialize threads internal locks and
+ condition variables to avoid deadlocks in child processes.
+
- Issue #8035: urllib: Fix a bug where the client could remain stuck after a
redirection or an error.