summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-10-05 18:02:28 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-10-05 18:02:28 (GMT)
commit1bf974dc6e15799856b1e5d6316238ecedcd798f (patch)
tree705dd21d7ea676aaa786ef40eecd2350f8d5e13a /Misc
parentbed04a77ee4dde8e1ab7b00557519f01cac734aa (diff)
downloadcpython-1bf974dc6e15799856b1e5d6316238ecedcd798f.zip
cpython-1bf974dc6e15799856b1e5d6316238ecedcd798f.tar.gz
cpython-1bf974dc6e15799856b1e5d6316238ecedcd798f.tar.bz2
Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive.
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 d0593c2..17e9d1c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
+- Issue #21173: Fix len() on a WeakKeyDictionary when .clear() was called
+ with an iterator alive.
+
- Issue #11866: Eliminated race condition in the computation of names
for new threads.