summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_iter.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_iter.py b/Lib/test/test_iter.py
index 22a7c44..a50c74f 100644
--- a/Lib/test/test_iter.py
+++ b/Lib/test/test_iter.py
@@ -479,7 +479,6 @@ class TestCase(unittest.TestCase):
self.assert_(i in sc5)
for i in "abc", -1, 5, 42.42, (3, 4), [], {1: 1}, 3-12j, sc5:
self.assert_(i not in sc5)
- del sc5
self.assertRaises(TypeError, lambda: 3 in 12)
self.assertRaises(TypeError, lambda: 3 not in map)
@@ -494,7 +493,6 @@ class TestCase(unittest.TestCase):
for k, v in d.iteritems():
self.assert_((k, v) in d.iteritems())
self.assert_((v, k) not in d.iteritems())
- del d
f = open(TESTFN, "w")
try: