summaryrefslogtreecommitdiffstats
path: root/Lib/tempfile.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-02-29 11:25:09 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-02-29 11:25:09 (GMT)
commit93088d1b031a6a00474c13c44d130b7c078de35d (patch)
tree39a4cb8647f87328dcbca65ef16b1c13e947c933 /Lib/tempfile.py
parentd047c2f8b2a4c25bd04f2536e9af24a9cc01ab77 (diff)
parent7869a227795da08841f8139b69b7d4521b12e184 (diff)
downloadcpython-93088d1b031a6a00474c13c44d130b7c078de35d.zip
cpython-93088d1b031a6a00474c13c44d130b7c078de35d.tar.gz
cpython-93088d1b031a6a00474c13c44d130b7c078de35d.tar.bz2
Issue #26385: Merge NamedTemporaryFile fix from 3.5
Diffstat (limited to 'Lib/tempfile.py')
-rw-r--r--Lib/tempfile.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index c39820e..ad687b9 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -552,7 +552,8 @@ def NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None,
newline=newline, encoding=encoding)
return _TemporaryFileWrapper(file, name, delete)
- except Exception:
+ except BaseException:
+ _os.unlink(name)
_os.close(fd)
raise