summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-06-13 17:52:50 (GMT)
committerGitHub <noreply@github.com>2022-06-13 17:52:50 (GMT)
commitf9585e2adc36fb2886f96ef86a5aa14215fc1151 (patch)
treec9cf13b54d8a4f44b03015893c911d6382225024 /Lib/importlib
parent58277de8e651df287ceae053eeb321c0f8406a1b (diff)
downloadcpython-f9585e2adc36fb2886f96ef86a5aa14215fc1151.zip
cpython-f9585e2adc36fb2886f96ef86a5aa14215fc1151.tar.gz
cpython-f9585e2adc36fb2886f96ef86a5aa14215fc1151.tar.bz2
gh-93353: Fix importlib.resources._tempfile() finalizer (GH-93377)
Fix the importlib.resources.as_file() context manager to remove the temporary file if destroyed late during Python finalization: keep a local reference to the os.remove() function. Patch by Victor Stinner. (cherry picked from commit 443ca731d6b1267fe2f92985e0490460c95e44a8) Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Lib/importlib')
-rw-r--r--Lib/importlib/_common.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/importlib/_common.py b/Lib/importlib/_common.py
index 549fee3..84144c0 100644
--- a/Lib/importlib/_common.py
+++ b/Lib/importlib/_common.py
@@ -80,7 +80,10 @@ def from_package(package):
@contextlib.contextmanager
-def _tempfile(reader, suffix=''):
+def _tempfile(reader, suffix='',
+ # gh-93353: Keep a reference to call os.remove() in late Python
+ # finalization.
+ *, _os_remove=os.remove):
# Not using tempfile.NamedTemporaryFile as it leads to deeper 'try'
# blocks due to the need to close the temporary file to work on Windows
# properly.
@@ -92,7 +95,7 @@ def _tempfile(reader, suffix=''):
yield pathlib.Path(raw_path)
finally:
try:
- os.remove(raw_path)
+ _os_remove(raw_path)
except FileNotFoundError:
pass