diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-03-05 10:06:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-05 10:06:26 +0200 |
commit | 5b10b9824780b2181158902067912ee9e7b04657 (patch) | |
tree | 1c89bea944e6638eb008c8f106b2ee48cc9448d1 /Lib/test/test_site.py | |
parent | 9e4861f52349011cd5916eef8e8344575e8ac426 (diff) | |
download | cpython-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_site.py')
-rw-r--r-- | Lib/test/test_site.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 8f04728ad1..8643da0540 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -125,10 +125,9 @@ class HelperFunctionsTests(unittest.TestCase): pth_dir = os.path.abspath(pth_dir) pth_basename = pth_name + '.pth' pth_fn = os.path.join(pth_dir, pth_basename) - pth_file = open(pth_fn, 'w', encoding='utf-8') - self.addCleanup(lambda: os.remove(pth_fn)) - pth_file.write(contents) - pth_file.close() + with open(pth_fn, 'w', encoding='utf-8') as pth_file: + self.addCleanup(lambda: os.remove(pth_fn)) + pth_file.write(contents) return pth_dir, pth_basename def test_addpackage_import_bad_syntax(self): |