summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2016-12-19 09:56:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2016-12-19 09:56:40 (GMT)
commitc1ee488962f0a20c2814b14a4c29d6082dd38add (patch)
tree08884079e3c2da9de5e337ae9d78b6410fa683ef /Misc
parentca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19 (diff)
downloadcpython-c1ee488962f0a20c2814b14a4c29d6082dd38add.zip
cpython-c1ee488962f0a20c2814b14a4c29d6082dd38add.tar.gz
cpython-c1ee488962f0a20c2814b14a4c29d6082dd38add.tar.bz2
Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDictionary.pop()
when a GC collection happens in another thread. Original patch and report by Armin Rigo.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f613d0d..a2c2881 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -133,6 +133,10 @@ Core and Builtins
Library
-------
+- Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and
+ WeakValueDictionary.pop() when a GC collection happens in another
+ thread.
+
- Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence that
doesn't own its elements as limits.