mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +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
|
@ -23,9 +23,8 @@ class SimplePipeTests(unittest.TestCase):
|
|||
self.skipTest('tr is not available')
|
||||
t = pipes.Template()
|
||||
t.append(s_command, pipes.STDIN_STDOUT)
|
||||
f = t.open(TESTFN, 'w')
|
||||
f.write('hello world #1')
|
||||
f.close()
|
||||
with t.open(TESTFN, 'w') as f:
|
||||
f.write('hello world #1')
|
||||
with open(TESTFN) as f:
|
||||
self.assertEqual(f.read(), 'HELLO WORLD #1')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue