diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-28 23:13:39 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-28 23:13:39 (GMT) |
commit | c61c170b419be5896608baf47ca3737b94cc15da (patch) | |
tree | 444cbe49a6ba1ca63355b95d16a6c1a6eadbfd5d /Lib | |
parent | 623138c1635f865fac4ab45af34048d5c7f42e37 (diff) | |
download | cpython-c61c170b419be5896608baf47ca3737b94cc15da.zip cpython-c61c170b419be5896608baf47ca3737b94cc15da.tar.gz cpython-c61c170b419be5896608baf47ca3737b94cc15da.tar.bz2 |
Issue #18174: Fix leak of file descriptor in test_tempfile
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_tempfile.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index b23c19f..ec975f8 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -762,8 +762,10 @@ class TestNamedTemporaryFile(BaseTestCase): def test_no_leak_fd(self): # Issue #21058: don't leak file descriptor when io.open() fails closed = [] + os_close = os.close def close(fd): closed.append(fd) + os_close(fd) with mock.patch('os.close', side_effect=close): with mock.patch('io.open', side_effect=ValueError): @@ -1076,8 +1078,10 @@ if tempfile.NamedTemporaryFile is not tempfile.TemporaryFile: def test_no_leak_fd(self): # Issue #21058: don't leak file descriptor when io.open() fails closed = [] + os_close = os.close def close(fd): closed.append(fd) + os_close(fd) with mock.patch('os.close', side_effect=close): with mock.patch('io.open', side_effect=ValueError): |