mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)
This commit is contained in:
parent
9e4861f523
commit
5b10b98247
25 changed files with 253 additions and 312 deletions
|
@ -20,13 +20,11 @@ class BoolTest(unittest.TestCase):
|
|||
|
||||
def test_print(self):
|
||||
try:
|
||||
fo = open(support.TESTFN, "w")
|
||||
print(False, True, file=fo)
|
||||
fo.close()
|
||||
fo = open(support.TESTFN, "r")
|
||||
self.assertEqual(fo.read(), 'False True\n')
|
||||
with open(support.TESTFN, "w") as fo:
|
||||
print(False, True, file=fo)
|
||||
with open(support.TESTFN, "r") as fi:
|
||||
self.assertEqual(fi.read(), 'False True\n')
|
||||
finally:
|
||||
fo.close()
|
||||
os.remove(support.TESTFN)
|
||||
|
||||
def test_repr(self):
|
||||
|
@ -245,9 +243,8 @@ class BoolTest(unittest.TestCase):
|
|||
|
||||
def test_fileclosed(self):
|
||||
try:
|
||||
f = open(support.TESTFN, "w")
|
||||
self.assertIs(f.closed, False)
|
||||
f.close()
|
||||
with open(support.TESTFN, "w") as f:
|
||||
self.assertIs(f.closed, False)
|
||||
self.assertIs(f.closed, True)
|
||||
finally:
|
||||
os.remove(support.TESTFN)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue