summaryrefslogtreecommitdiffstats
path: root/Doc/library/importlib.rst
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-37574: Mention helper functions for find_spec documentation (GH-14739)jdkandersson2019-09-101-1/+4
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-2/+2
* bpo-37444: Update differing exception between builtins and importlib (GH-14869)Ngalim Siregar2019-08-031-3/+8
* Swap 'if' branches so content matches to condition in importlib example (GH-1...Tzu-ping Chung2019-07-251-3/+3
* bpo-37521: No longer treat insertion into sys.modules as optional in importli...Brett Cannon2019-07-121-9/+9
* bpo-37459: importlib docs improperly reference get_resource_loader() (#14568)aldwinaldwin2019-07-041-1/+1
* bpo-35486: Note Py3.6 import system API requirement change (GH-11540)Nick Coghlan2019-01-171-1/+2
* bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174)Serhiy Storchaka2018-12-191-4/+4
* [Docs] Fix required version of an example of importlib (GH-10118)E Kawashima2018-11-051-1/+1
* bpo-35044, doc: Use the :exc: role for the exceptions (GH-10037)Stéphane Wirtel2018-10-261-1/+1
* importlib doc: Fix approximated import_module() code (GH-9945)orlnub1232018-10-241-1/+1
* Fix the versionadded indentation in exec_module doc (GH-8719)Andrés Delfino2018-08-121-1/+1
* bpo-33859: Fix spelling mistakes in docs. (GH-7691)Xtreak2018-06-161-1/+1