Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive.

This commit is contained in:
Antoine Pitrou 2014-10-05 20:02:28 +02:00
parent bed04a77ee
commit 1bf974dc6e
3 changed files with 52 additions and 0 deletions

View file

@ -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.