summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-12-18 17:35:09 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-12-18 17:35:09 (GMT)
commit6d5f9e73d973a9ec5a68dfc0bc1859e6e4f50896 (patch)
treeeb1ec3156660aa7303efda46294e8453cb07ac34 /Misc
parentcf53ae2171d01eed0e1c902b51da27b5bdfbc143 (diff)
downloadcpython-6d5f9e73d973a9ec5a68dfc0bc1859e6e4f50896.zip
cpython-6d5f9e73d973a9ec5a68dfc0bc1859e6e4f50896.tar.gz
cpython-6d5f9e73d973a9ec5a68dfc0bc1859e6e4f50896.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 72b33b9..4be3a6b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,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.