summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-06-29 20:59:22 (GMT)
committerGitHub <noreply@github.com>2020-06-29 20:59:22 (GMT)
commit2fb5f038f2a2e91a7293d62dfd5601e6eb500c55 (patch)
tree599ffdee6b55ed75c994e7072e21b1893b7dde79 /Misc
parente67f7db3c34f70536f36c56bb82e33c3512a53a3 (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-06-13-12-04-50.bpo-40924.SM_luS.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-06-13-12-04-50.bpo-40924.SM_luS.rst b/Misc/NEWS.d/next/Library/2020-06-13-12-04-50.bpo-40924.SM_luS.rst
new file mode 100644
index 0000000..4e4c6e8
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-06-13-12-04-50.bpo-40924.SM_luS.rst
@@ -0,0 +1,3 @@
+Ensure ``importlib.resources.path`` returns an extant path for the
+SourceFileLoader's resource reader. Avoids the regression identified in
+master while a long-term solution is devised.