summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/resources
Commit message (Collapse)AuthorAgeFilesLines
* 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.