Made the vendored NamedTemporaryFile work as a context manager. Refs #22680.
This fixes a regression on Windows introduced by b7de5f5
.
Thanks Tim Graham for the report and review.
This commit is contained in:
parent
c307383ec9
commit
6e8d614acd
|
@ -69,6 +69,13 @@ if os.name == 'nt':
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
|
def __enter__(self):
|
||||||
|
self.file.__enter__()
|
||||||
|
return self
|
||||||
|
|
||||||
|
def __exit__(self, exc, value, tb):
|
||||||
|
self.file.__exit__(exc, value, tb)
|
||||||
|
|
||||||
NamedTemporaryFile = TemporaryFile
|
NamedTemporaryFile = TemporaryFile
|
||||||
else:
|
else:
|
||||||
NamedTemporaryFile = tempfile.NamedTemporaryFile
|
NamedTemporaryFile = tempfile.NamedTemporaryFile
|
||||||
|
|
Loading…
Reference in New Issue