summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tempfile.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-28 23:13:39 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-07-28 23:13:39 (GMT)
commitc61c170b419be5896608baf47ca3737b94cc15da (patch)
tree444cbe49a6ba1ca63355b95d16a6c1a6eadbfd5d /Lib/test/test_tempfile.py
parent623138c1635f865fac4ab45af34048d5c7f42e37 (diff)
downloadcpython-c61c170b419be5896608baf47ca3737b94cc15da.zip
cpython-c61c170b419be5896608baf47ca3737b94cc15da.tar.gz
cpython-c61c170b419be5896608baf47ca3737b94cc15da.tar.bz2
Issue #18174: Fix leak of file descriptor in test_tempfile
Diffstat (limited to 'Lib/test/test_tempfile.py')
-rw-r--r--Lib/test/test_tempfile.py4
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):