summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/resources
Commit message (Collapse)AuthorAgeFilesLines
* gh-93353: Fix importlib.resources._tempfile() finalizer (GH-93377)Miss Islington (bot)2022-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. (cherry picked from commit 443ca731d6b1267fe2f92985e0490460c95e44a8) Co-authored-by: Victor Stinner <vstinner@python.org>
* 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.