summaryrefslogtreecommitdiff
path: root/Lib/weakref.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/weakref.py')
-rw-r--r--Lib/weakref.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/weakref.py b/Lib/weakref.py
index cc7b494c91..f1222fad1b 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))