diff options
-rw-r--r-- | Lib/weakref.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/weakref.py b/Lib/weakref.py index cc7b494..f1222fa 100644 --- a/Lib/weakref.py +++ b/Lib/weakref.py @@ -69,7 +69,6 @@ class WeakDictionary(UserDict.UserDict): def items(self): L = [] for key, ref in self.data.items(): - key, ref = L[i] o = ref() if o is not None: L.append((key, o)) |