diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2024-09-12 02:33:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 02:33:07 (GMT) |
commit | ba687d9481c04fd160795ff8d8568f5c9f877128 (patch) | |
tree | 03845d8195b86add0ced1e72f55b1e556c0c5b80 /Misc/NEWS.d/next | |
parent | 3bd942f106aa36c261a2d90104c027026b2a8fb6 (diff) | |
download | cpython-ba687d9481c04fd160795ff8d8568f5c9f877128.zip cpython-ba687d9481c04fd160795ff8d8568f5c9f877128.tar.gz cpython-ba687d9481c04fd160795ff8d8568f5c9f877128.tar.bz2 |
gh-121735: Fix module-adjacent references in zip files (#123037)
* gh-116608: Apply style and compatibility changes from importlib_metadata.
* gh-121735: Ensure module-adjacent resources are loadable from a zipfile.
* gh-121735: Allow all modules to be processed by the ZipReader.
* Add blurb
* Remove update-zips script, unneeded.
* Remove unnecessary references to removed static fixtures.
* Remove zipdata fixtures, unused.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-08-15-09-45-34.gh-issue-121735._1q0qf.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-08-15-09-45-34.gh-issue-121735._1q0qf.rst b/Misc/NEWS.d/next/Library/2024-08-15-09-45-34.gh-issue-121735._1q0qf.rst new file mode 100644 index 0000000..e10b2e7 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-08-15-09-45-34.gh-issue-121735._1q0qf.rst @@ -0,0 +1,3 @@ +When working with zip archives, importlib.resources now properly honors +module-adjacent references (e.g. ``files(pkg.mod)`` and not just +``files(pkg)``). |