From: Tim Peters Date: Sat, 5 May 2001 21:36:52 +0000 (+0000) Subject: Get rid of silly 5am "del" stmts. X-Git-Tag: v2.2a3~1899 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef0c42d4e5d0d7493395b1e3c37fe53dc48a377f;p=thirdparty%2FPython%2Fcpython.git Get rid of silly 5am "del" stmts. --- diff --git a/Lib/test/test_iter.py b/Lib/test/test_iter.py index 22a7c4460d4b..a50c74f2fd58 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: