summaryrefslogtreecommitdiffstats
path: root/Lib/tempfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/tempfile.py')
-rw-r--r--Lib/tempfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index 8cdefaa..93405a8 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -410,7 +410,7 @@ class _TemporaryFileWrapper:
return result
else:
def __exit__(self, exc, value, tb):
- pass
+ self.file.__exit__(exc, value, tb)
def NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None,