summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-16 00:36:38 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-16 00:36:38 (GMT)
commit7ac5cb18df3b9778d55aaf673da7c49f1666b4c9 (patch)
tree3ebe345faddd3932fc66f2b765a3414bafcf0f62
parentbeba826023972d1440c1f646e1605e396011579f (diff)
downloadcpython-7ac5cb18df3b9778d55aaf673da7c49f1666b4c9.zip
cpython-7ac5cb18df3b9778d55aaf673da7c49f1666b4c9.tar.gz
cpython-7ac5cb18df3b9778d55aaf673da7c49f1666b4c9.tar.bz2
Merged revisions 81224 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81224 | victor.stinner | 2010-05-16 02:34:40 +0200 (dim., 16 mai 2010) | 4 lines Use with open() as fo: ... instead of try: fo = open(...) finally: fo.close() fo is not set if the open() fails. ........
-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 e2889cc..12f4e8f 100644
--- a/Lib/test/list_tests.py
+++ b/Lib/test/list_tests.py
@@ -66,13 +66,11 @@ class CommonTest(seq_tests.CommonTest):
d.append(d)
d.append(400)
try:
- fo = open(support.TESTFN, "w")
- fo.write(str(d))
- fo.close()
- fo = open(support.TESTFN, "r")
- self.assertEqual(fo.read(), repr(d))
+ with open(support.TESTFN, "w") as fo:
+ fo.write(str(d))
+ with open(support.TESTFN, "r") as fo:
+ self.assertEqual(fo.read(), repr(d))
finally:
- fo.close()
os.remove(support.TESTFN)
def test_set_subscript(self):