summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/test/list_tests.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/Lib/test/list_tests.py b/Lib/test/list_tests.py
index e2fa9fe632..546416ed56 100644
--- a/Lib/test/list_tests.py
+++ b/Lib/test/list_tests.py
@@ -57,13 +57,11 @@ class CommonTest(seq_tests.CommonTest):
d.append(d)
d.append(400)
try:
- fo = open(test_support.TESTFN, "wb")
- print >> fo, d,
- fo.close()
- fo = open(test_support.TESTFN, "rb")
- self.assertEqual(fo.read(), repr(d))
+ with open(test_support.TESTFN, "wb") as fo:
+ print >> fo, d,
+ with open(test_support.TESTFN, "rb") as fo:
+ self.assertEqual(fo.read(), repr(d))
finally:
- fo.close()
os.remove(test_support.TESTFN)
def test_set_subscript(self):