diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-05-30 21:04:26 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-05-30 21:04:26 +0000 |
commit | c06de477a35669cac037b0bc92a28f9492d76015 (patch) | |
tree | 904ed4860201b9f345b8f2697c720fc4f5223064 /Lib/weakref.py | |
parent | 3b1b8072f5f6b30616ac495c288537dcaac92cab (diff) | |
download | cpython-git-c06de477a35669cac037b0bc92a28f9492d76015.tar.gz |
Issue #6149: Fix initialization of WeakValueDictionary objects from non-empty parameters.
Diffstat (limited to 'Lib/weakref.py')
-rw-r--r-- | Lib/weakref.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/weakref.py b/Lib/weakref.py index 0276dfd117..5e6cc8be3a 100644 --- a/Lib/weakref.py +++ b/Lib/weakref.py @@ -49,7 +49,7 @@ class WeakValueDictionary(collections.MutableMapping): del self.data[wr.key] self._remove = remove self.data = d = {} - d.update(*args, **kw) + self.update(*args, **kw) def __getitem__(self, key): o = self.data[key]() |