diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-08 17:54:23 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-08 17:54:23 (GMT) |
commit | c1baa601e2b558deb690edfdf334fceee3b03327 (patch) | |
tree | 1cf896c04e483406149bb8ad9c47ce89271a3795 /Misc | |
parent | dc2a61347b569a42f99b7f64fd59bff0d2dcb4ba (diff) | |
download | cpython-c1baa601e2b558deb690edfdf334fceee3b03327.zip cpython-c1baa601e2b558deb690edfdf334fceee3b03327.tar.gz cpython-c1baa601e2b558deb690edfdf334fceee3b03327.tar.bz2 |
Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust against
the destruction of weakref'ed objects while iterating.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -194,6 +194,9 @@ C-API Library ------- +- Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust against + the destruction of weakref'ed objects while iterating. + - Issue #7455: Fix possible crash in cPickle on invalid input. Patch by Victor Stinner. |