diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-06-29 20:59:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 20:59:22 (GMT) |
commit | 2fb5f038f2a2e91a7293d62dfd5601e6eb500c55 (patch) | |
tree | 599ffdee6b55ed75c994e7072e21b1893b7dde79 /Lib | |
parent | e67f7db3c34f70536f36c56bb82e33c3512a53a3 (diff) | |
download | cpython-2fb5f038f2a2e91a7293d62dfd5601e6eb500c55.zip cpython-2fb5f038f2a2e91a7293d62dfd5601e6eb500c55.tar.gz cpython-2fb5f038f2a2e91a7293d62dfd5601e6eb500c55.tar.bz2 |
bpo-40924: Ensure importlib.resources.path returns an extant path (GH-20857)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/importlib/readers.py | 13 | ||||
-rw-r--r-- | Lib/test/test_importlib/test_path.py | 9 |
2 files changed, 21 insertions, 1 deletions
diff --git a/Lib/importlib/readers.py b/Lib/importlib/readers.py index fb49ebe..6331e4d 100644 --- a/Lib/importlib/readers.py +++ b/Lib/importlib/readers.py @@ -7,11 +7,19 @@ class FileReader(abc.TraversableResources): def __init__(self, loader): self.path = pathlib.Path(loader.path).parent + def resource_path(self, resource): + """ + Return the file system path to prevent + `resources.path()` from creating a temporary + copy. + """ + return str(self.path.joinpath(resource)) + def files(self): return self.path -class ZipReader(FileReader): +class ZipReader(abc.TraversableResources): def __init__(self, loader, module): _, _, name = module.rpartition('.') prefix = loader.prefix.replace('\\', '/') + name + '/' @@ -28,3 +36,6 @@ class ZipReader(FileReader): # for non-existent paths. target = self.files().joinpath(path) return target.is_file() and target.exists() + + def files(self): + return self.path diff --git a/Lib/test/test_importlib/test_path.py b/Lib/test/test_importlib/test_path.py index c4e7285..abf8086 100644 --- a/Lib/test/test_importlib/test_path.py +++ b/Lib/test/test_importlib/test_path.py @@ -27,6 +27,15 @@ class PathTests: class PathDiskTests(PathTests, unittest.TestCase): data = data01 + def test_natural_path(self): + """ + Guarantee the internal implementation detail that + file-system-backed resources do not get the tempdir + treatment. + """ + with resources.path(self.data, 'utf-8.file') as path: + assert 'data' in str(path) + class PathZipTests(PathTests, util.ZipSetup, unittest.TestCase): def test_remove_in_context_manager(self): |