summaryrefslogtreecommitdiffstats
path: root/Doc/library/importlib.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-126548: Add a thread-unsafety warning for `importlib.reload()` (GH-...Miss Islington (bot)2025-07-161-0/+4
* [3.13] GH-121970: Replace custom abstract method directive with the ``:abstra...Adam Turner2025-02-221-16/+32
* [3.13] gh-97850: Update the deprecation warning of `importlib.abc.Loader.load...Miss Islington (bot)2025-02-111-6/+6
* [3.13] Use roles :data: and :const: for referencing module variables (GH-1295...Serhiy Storchaka2025-02-041-10/+10
* [3.13] gh-97850: Suggest `TraversableResources` as the alternative for `Resou...Miss Islington (bot)2025-01-151-1/+3
* [3.13] gh-101100: Consolidate documentation on `ModuleType` attributes (#1247...Alex Waygood2024-10-091-53/+34
* [3.13] Fixup indentation for docs on `ModuleSpec` attributes (#124681) (#124685)Alex Waygood2024-09-271-43/+36
* [3.13] gh-121607: Edited source file import recipe to make it more clear (GH-...Miss Islington (bot)2024-09-241-12/+25
* [3.13] Fix typos in docs and what's new (#123451)Wulian2024-09-021-1/+1
* [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106)Miss Islington (bot)2024-07-221-1/+1
* gh-114099 - Add iOS framework loading machinery. (GH-116454)Russell Keith-Magee2024-03-191-0/+63
* Docs: mark up NotImplemented using the :data: role throughout the docs (#116135)Erlend E. Aasland2024-02-291-1/+1
* Docs: fix markup for `importlib.machinery.NamespaceLoader` (#112479)Alex Waygood2023-11-281-1/+1
* gh-105189: fix importlib.resources.abc deprecation docs (#105232)Thomas Grainger2023-09-131-0/+154
* Fix misc doc typos (#108592)xzmeng2023-08-291-1/+1
* gh-107307: Update the importlib Docs for PEP 684 (gh-107400)Eric Snow2023-07-281-0/+31
* gh-106892: Use roles :data: and :const: for referencing module variables (GH-...Serhiy Storchaka2023-07-211-9/+9
* gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059)Barry Warsaw2023-05-031-110/+2
* gh-101390: Fix docs for `imporlib.util.LazyLoader.factory` to properly call i...busywhitespace2023-02-101-1/+1
* gh-97850: Remove deprecated functions from `importlib.utils` (#97898)Nikita Sobolev2022-10-071-53/+1
* gh-65961: Raise `DeprecationWarning` when `__package__` differs from `__spec_...Brett Cannon2022-10-051-9/+0
* gh-94619: Remove long deprecated methods module_repr() and load_module() (#94...Barry Warsaw2022-08-051-14/+0
* gh-93610: Improve docs for importlib.resources (#93611)Petr Viktorin2022-07-251-2/+245
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH...Ned Batchelder2022-07-051-4/+4
* gh-92994: Clarify importlib "check" example (#92995)Shantanu2022-05-231-0/+3
* gh-92417: `importlib` docs: remove references to unsupported Python versions ...Alex Waygood2022-05-191-7/+4
* importlib docs: Update importlib.abc hierarchy (#31113)David Gilbertson2022-05-021-4/+3
* bpo-31582: Created a new documentation section describing sys.path initializa...Russel Webber2022-03-231-0/+3
* bpo-46109: Separate out files relating to importlib.resources (GH-30160)Jason R. Coombs2021-12-311-573/+13
* bpo-45514: Deprecate importlib resources legacy functions. (GH-29036)Jason R. Coombs2021-11-241-1/+17
* bpo-45703: Invalidate _NamespacePath cache on importlib.invalidate_ca… (GH-...Miro Hrončok2021-11-231-0/+4
* bpo-37800: Clean up importlib documentation for some module attributes (GH-10...Géry Ogam2021-11-161-63/+77
* bpo-45516: fix Traversable.name documentation (GH-29194)Filipe Laíns2021-10-311-2/+2
* bpo-45516: add protocol description to the TraversableResources documentation...Filipe Laíns2021-10-231-0/+5
* bpo-35673: Add a public alias for namespace package __loader__ attribute (#29...Barry Warsaw2021-10-201-0/+18
* bpo-45516: use documentation links in TraversableResources' description (GH-2...Filipe Laíns2021-10-191-4/+5
* bpo-45516: add protocol description to the Traversable documentation (#29039)Filipe Laíns2021-10-181-0/+40
* bpo-44195: Use 'TraversableResources' in the docs to match the implementation...Jason R. Coombs2021-05-241-2/+2
* bpo-43207: InspectLoader.is_package is not an abstract method (GH-24517)Junnosuke Kuroda2021-05-231-1/+1
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-061-3/+16
* bpo-43644: Add docs for importlib.resources.as_file. (#25048)Jason R. Coombs2021-03-281-0/+16
* bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24...Brett Cannon2021-03-241-7/+7
* bpo-42811: Update importlib.utils.resolve_name() docs to use __spec__.parent ...Yair Frid2021-01-061-1/+1
* [doc] Fix erroneous backslashes in signatures and names (GH-23658)Andre Delfino2020-12-171-2/+2
* bpo-35181: Correct importlib documentation for some module attributes (GH-15190)Géry Ogam2020-10-211-6/+8
* bpo-40204: Fix reference to terms in the doc (GH-21865)Victor Stinner2020-08-141-2/+2
* bpo-32192: A basic lazy importer example (GH-21330)Joannah Nanjekye2020-07-131-0/+23
* bpo-39791: Add files() to importlib.resources (GH-19722)Jason R. Coombs2020-05-081-0/+37
* bpo-19698: Document when importlib.machinery.FrozenImporter gained spec-relat...Brett Cannon2020-03-251-0/+4
* bpo-38738: Fix formatting of True and False. (GH-17083)Serhiy Storchaka2019-11-121-1/+1