summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bool.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-03-05 08:06:26 (GMT)
committerGitHub <noreply@github.com>2019-03-05 08:06:26 (GMT)
commit5b10b9824780b2181158902067912ee9e7b04657 (patch)
tree1c89bea944e6638eb008c8f106b2ee48cc9448d1 /Lib/test/test_bool.py
parent9e4861f52349011cd5916eef8e8344575e8ac426 (diff)
downloadcpython-5b10b9824780b2181158902067912ee9e7b04657.zip
cpython-5b10b9824780b2181158902067912ee9e7b04657.tar.gz
cpython-5b10b9824780b2181158902067912ee9e7b04657.tar.bz2
bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)
Diffstat (limited to 'Lib/test/test_bool.py')
-rw-r--r--Lib/test/test_bool.py15
1 files changed, 6 insertions, 9 deletions
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py
index c5a1f1f..909a59a 100644
--- a/Lib/test/test_bool.py
+++ b/Lib/test/test_bool.py
@@ -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)