summaryrefslogtreecommitdiffstats
path: root/Doc/library/importlib.resources.rst
Commit message (Collapse)AuthorAgeFilesLines
* docs: module page titles should not start with a link to themselves (#117099)Ned Batchelder2024-05-081-2/+2
|
* gh-116608: importlib.resources: Un-deprecate functional API & add ↵Petr Viktorin2024-04-051-0/+178
| | | | subdirectory support (GH-116609)
* gh-101100: Fix Sphinx reference warnings (GH-112416)Hugo van Kemenade2023-11-251-6/+6
| | | | | | | | | | | | | | | | | | | | | | | * Fix Sphinx warning in library/xml.rst Direct use of the pyexpat module is deprecated, but this is how to check the version for security purposes * Fix Sphinx warning in library/importlib.resources.rst * Use italics for parameters * Link to the exception * Fix Sphinx warning in library/gzip.rst * Document message and header defect base classes to fix Sphinx warning in library/email.headerregistry.rst * Restore feed_eof() doc to fix Sphinx warning in library/asyncio-stream.rst * Fix Sphinx warning in extending/newtypes.rst * Fix Sphinx warning in c-api/set.rst On stdtypes.rst, set and frozenset are documented together and the frozenset has the working refs
* gh-107732: Mention dir support in importlib.resources docs (#107734)Shahriar Heidrich2023-09-061-5/+8
| | | | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* gh-106531: Remove importlib.resources._legacy (#106532)Jason R. Coombs2023-07-141-156/+0
| | | | | | | * gh-106531: Remove importlib.resources._legacy Syncs with importlib_resources 6.0. * Remove documentation for removed functionality.
* gh-102215: importlib documentation cleanupsSam Morris2023-05-061-3/+3
|
* gh-97930: Apply changes from importlib_resources 5.10. (GH-100598)Jason R. Coombs2023-01-011-19/+42
|
* gh-88330: Add more detail about what is a resource. (#99801)Jason R. Coombs2022-11-261-3/+11
|
* gh-91838: Use HTTPS links in docs for resources which redirect to HTTPS ↵Serhiy Storchaka2022-08-041-3/+3
| | | | | | | | | | (GH-95527) If an HTTP link is redirected to a same looking HTTPS link, the latter can be used directly without changes in readability and behavior. It protects from a men-in-the-middle attack. This change does not affect Python examples.
* gh-93610: Improve docs for importlib.resources (#93611)Petr Viktorin2022-07-251-31/+67
| | | | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-93851: Fix all broken links in Doc/ (GH-93853)Oleg Iarygin2022-06-211-1/+1
|
* bpo-46109: Separate out files relating to importlib.resources (GH-30160)Jason R. Coombs2021-12-311-0/+185
* Separate out files relating to importlib.resources * Update Introduction to direct readers to the submodule documentation. * Create separate file for abcs relating to resources. * Move abc docs back to where they were.