summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/resources
Commit message (Collapse)AuthorAgeFilesLines
* [3.13] gh-121735: Fix module-adjacent references in zip files (GH-123037) ↵Miss Islington (bot)2024-09-301-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | (#123986) * gh-121735: Fix module-adjacent references in zip files (GH-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. (cherry picked from commit ba687d9481c04fd160795ff8d8568f5c9f877128) * gh-123994: Generate utf-16 file using little endian and BOM. (#123995) Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* [3.13] gh-116608: Apply style and compatibility changes from ↵Miss Islington (bot)2024-08-151-5/+1
| | | | | | | | importlib_resources. (GH-123028) (#123051) gh-116608: Apply style and compatibility changes from importlib_metadata. (GH-123028) (cherry picked from commit e913d2c87f1ae4e7a4aef5ba78368ef31d060767) Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* [3.13] gh-106531: Apply changes from importlib_resources 6.3.2 (GH-117054) ↵Miss Islington (bot)2024-06-042-2/+54
| | | | | | | | | | (#120014) gh-106531: Apply changes from importlib_resources 6.3.2 (GH-117054) Apply changes from importlib_resources 6.3.2. (cherry picked from commit 8d63c8d47b9edd8ac2f0b395b2fa0ae5f571252d) Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* gh-116608: importlib.resources: Un-deprecate functional API & add ↵Petr Viktorin2024-04-052-0/+102
| | | | subdirectory support (GH-116609)
* GH-109653: Defer import of ``importlib.metadata._adapters`` (#109829)Adam Turner2024-03-211-2/+3
| | | | | | | | | | | * adapters * Add comments for deferred imports with links to rationale. * Add blurb --------- Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* Add missed `stream` argument (#111775)Alexander Shadchin2024-02-201-1/+1
| | | | | * Add missed `stream` argument * Add news
* gh-113238: add Anchor to importlib.resources (#113801)Mike Zimin2024-01-161-0/+2
| | | | Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
* gh-106531: Remove importlib.resources._legacy (#106532)Jason R. Coombs2023-07-142-139/+0
| | | | | | | * gh-106531: Remove importlib.resources._legacy Syncs with importlib_resources 6.0. * Remove documentation for removed functionality.
* gh-97930: Apply changes from importlib_resources 5.12. (GH-102010)Jason R. Coombs2023-02-183-42/+67
|
* gh-97930: Apply changes from importlib_resources 5.10. (GH-100598)Jason R. Coombs2023-01-014-57/+100
|
* gh-100585: Fixed a bug where importlib.resources.as_file was leaving file ↵Samet YASLAN2022-12-281-1/+1
| | | | | | | pointers open (GH-100586) * gh-100585: Fixed open fp bug in the imporlib module * Added news for gh-100585
* gh-97930: Merge with importlib_resources 5.9 (GH-97929)Jason R. Coombs2022-10-164-29/+86
| | | | | * Merge with importlib_resources 5.9 * Update changelog
* gh-82874: Convert remaining importlib format uses to f-str. (#98005)Gregory P. Smith2022-10-071-1/+1
| | | f-yes
* gh-93353: Fix importlib.resources._tempfile() finalizer (#93377)Victor Stinner2022-06-131-2/+5
| | | | | 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.
* gh-91298: Refine traversable (apply changes from importlib_resources 5.7.1) ↵Jason R. Coombs2022-04-172-15/+39
| | | | | | | (#91623) * bpo-47142: Refine traversable (apply changes from importlib_resources 5.7.1) * Replace changelog referencing github issue.
* bpo-46118: Move importlib.resources to its own package. (#30176)Jason R. Coombs2021-12-318-0/+840
* bpo-46118: Move importlib.resources to its own package. * Expand compatibility shims with documentation and explicit imports.