aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/importlib/resources/_common.py
Commit message (Collapse)AuthorAge
* gh-123987: Fix NotADirectoryError in NamespaceReader when sentinel present ↵Jason R. Coombs2025-01-26
| | | | (#124018)
* gh-123085: Fix issue in inferred caller when resources package has no source ↵Jason R. Coombs2024-09-12
| | | | | | | (#123102) gh-123085: Fix issue in inferred caller when resources package has no source. From importlib_resources 6.4.3 (python/importlib_resources#314).
* Fix typos in warnings, docstrings, comments and text files (#123597)abstractee2024-09-03
|
* gh-106531: Apply changes from importlib_resources 6.3.2 (#117054)Jason R. Coombs2024-06-04
| | | Apply changes from importlib_resources 6.3.2.
* GH-109653: Defer import of ``importlib.metadata._adapters`` (#109829)Adam Turner2024-03-21
| | | | | | | | | | | * adapters * Add comments for deferred imports with links to rationale. * Add blurb --------- Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* gh-97930: Apply changes from importlib_resources 5.10. (GH-100598)Jason R. Coombs2023-01-01
|
* gh-100585: Fixed a bug where importlib.resources.as_file was leaving file ↵Samet YASLAN2022-12-28
| | | | | | | 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-16
| | | | | * Merge with importlib_resources 5.9 * Update changelog
* gh-93353: Fix importlib.resources._tempfile() finalizer (#93377)Victor Stinner2022-06-13
| | | | | 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.
* bpo-46118: Move importlib.resources to its own package. (#30176)Jason R. Coombs2021-12-30
* bpo-46118: Move importlib.resources to its own package. * Expand compatibility shims with documentation and explicit imports.