Commit 2c3563f7 authored by Brian Curtin's avatar Brian Curtin

Implement #7944. Use `with` throughout the test suite.

parent 5acec04d
...@@ -11,16 +11,10 @@ class HelperMixin: ...@@ -11,16 +11,10 @@ class HelperMixin:
new = marshal.loads(marshal.dumps(sample, *extra)) new = marshal.loads(marshal.dumps(sample, *extra))
self.assertEqual(sample, new) self.assertEqual(sample, new)
try: try:
f = open(support.TESTFN, "wb") with open(support.TESTFN, "wb") as f:
try:
marshal.dump(sample, f, *extra) marshal.dump(sample, f, *extra)
finally: with open(support.TESTFN, "rb") as f:
f.close()
f = open(support.TESTFN, "rb")
try:
new = marshal.load(f) new = marshal.load(f)
finally:
f.close()
self.assertEqual(sample, new) self.assertEqual(sample, new)
finally: finally:
support.unlink(support.TESTFN) support.unlink(support.TESTFN)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment