summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/weakref.py1
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))