diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2024-09-12 19:08:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 19:08:06 (GMT) |
commit | a53812df126b99bca25187441a123c7785ee82a0 (patch) | |
tree | d46a8d6c7b85ffea776a527f72de2aeb4234c04a /Misc/NEWS.d/next | |
parent | 8145ebea587284db3be3f152ee0298952977d6f4 (diff) | |
download | cpython-a53812df126b99bca25187441a123c7785ee82a0.zip cpython-a53812df126b99bca25187441a123c7785ee82a0.tar.gz cpython-a53812df126b99bca25187441a123c7785ee82a0.tar.bz2 |
gh-123085: Fix issue in inferred caller when resources package has no source (#123102)
gh-123085: Fix issue in inferred caller when resources package has no source.
From importlib_resources 6.4.3 (python/importlib_resources#314).
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-08-17-08-17-20.gh-issue-123085.7Io2yH.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-08-17-08-17-20.gh-issue-123085.7Io2yH.rst b/Misc/NEWS.d/next/Library/2024-08-17-08-17-20.gh-issue-123085.7Io2yH.rst new file mode 100644 index 0000000..2e09401 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-08-17-08-17-20.gh-issue-123085.7Io2yH.rst @@ -0,0 +1,3 @@ +In a bare call to :func:`importlib.resources.files`, ensure the caller's +frame is properly detected when ``importlib.resources`` is itself available +as a compiled module only (no source). |