summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-07-02 12:35:49 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-07-02 12:35:49 (GMT)
commit778db49da9eeb23af4410f592165d7e46d4a285a (patch)
tree13f82e6a6663d5af396bd723d01d2d4b57798a5c /Misc/NEWS
parentafa44a8096446bf1bad6c5d2acaac32a4b41b58d (diff)
downloadcpython-778db49da9eeb23af4410f592165d7e46d4a285a.zip
cpython-778db49da9eeb23af4410f592165d7e46d4a285a.tar.gz
cpython-778db49da9eeb23af4410f592165d7e46d4a285a.tar.bz2
Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
the garbage collector while the Heap lock is held.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e68a4e3..1e98768a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -107,6 +107,9 @@ Core and Builtins
Library
-------
+- Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
+ the garbage collector while the Heap lock is held.
+
- Issue #985064: Make plistlib more resilient to faulty input plists.
Patch by Mher Movsisyan.