mirror of https://github.com/python/cpython
Implement #7944. Use `with` throughout the test suite.
This commit is contained in:
parent
5acec04db5
commit
2c3563f782
|
@ -11,16 +11,10 @@ class HelperMixin:
|
|||
new = marshal.loads(marshal.dumps(sample, *extra))
|
||||
self.assertEqual(sample, new)
|
||||
try:
|
||||
f = open(support.TESTFN, "wb")
|
||||
try:
|
||||
with open(support.TESTFN, "wb") as f:
|
||||
marshal.dump(sample, f, *extra)
|
||||
finally:
|
||||
f.close()
|
||||
f = open(support.TESTFN, "rb")
|
||||
try:
|
||||
with open(support.TESTFN, "rb") as f:
|
||||
new = marshal.load(f)
|
||||
finally:
|
||||
f.close()
|
||||
self.assertEqual(sample, new)
|
||||
finally:
|
||||
support.unlink(support.TESTFN)
|
||||
|
|
Loading…
Reference in New Issue