summaryrefslogtreecommitdiff
path: root/Lib/test/test_binhex.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-03-05 10:06:26 +0200
committerGitHub <noreply@github.com>2019-03-05 10:06:26 +0200
commit5b10b9824780b2181158902067912ee9e7b04657 (patch)
tree1c89bea944e6638eb008c8f106b2ee48cc9448d1 /Lib/test/test_binhex.py
parent9e4861f52349011cd5916eef8e8344575e8ac426 (diff)
downloadcpython-git-5b10b9824780b2181158902067912ee9e7b04657.tar.gz
bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)
Diffstat (limited to 'Lib/test/test_binhex.py')
-rw-r--r--Lib/test/test_binhex.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py
index 21f446325a..2f3d53afbd 100644
--- a/Lib/test/test_binhex.py
+++ b/Lib/test/test_binhex.py
@@ -23,17 +23,15 @@ class BinHexTestCase(unittest.TestCase):
DATA = b'Jack is my hero'
def test_binhex(self):
- f = open(self.fname1, 'wb')
- f.write(self.DATA)
- f.close()
+ with open(self.fname1, 'wb') as f:
+ f.write(self.DATA)
binhex.binhex(self.fname1, self.fname2)
binhex.hexbin(self.fname2, self.fname1)
- f = open(self.fname1, 'rb')
- finish = f.readline()
- f.close()
+ with open(self.fname1, 'rb') as f:
+ finish = f.readline()
self.assertEqual(self.DATA, finish)