mirror of https://github.com/python/cpython.git
[3.13] gh-129044: Update glossary entry for 'loader' to reflect current import system (GH-129073) (#129077)
gh-129044: Update glossary entry for 'loader' to reflect current import system (GH-129073)
(cherry picked from commit e1fa2fcc7c
)
Co-authored-by: nikalinov <92603661+nikalinov@users.noreply.github.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
This commit is contained in:
parent
55d3d8165c
commit
2f8eefe97a
|
@ -801,9 +801,11 @@ Glossary
|
|||
processed.
|
||||
|
||||
loader
|
||||
An object that loads a module. It must define a method named
|
||||
:meth:`load_module`. A loader is typically returned by a
|
||||
:term:`finder`. See also:
|
||||
An object that loads a module.
|
||||
It must define the :meth:`!exec_module` and :meth:`!create_module` methods
|
||||
to implement the :class:`~importlib.abc.Loader` interface.
|
||||
A loader is typically returned by a :term:`finder`.
|
||||
See also:
|
||||
|
||||
* :ref:`finders-and-loaders`
|
||||
* :class:`importlib.abc.Loader`
|
||||
|
|
|
@ -12,7 +12,6 @@ Doc/c-api/stable.rst
|
|||
Doc/c-api/type.rst
|
||||
Doc/c-api/typeobj.rst
|
||||
Doc/extending/extending.rst
|
||||
Doc/glossary.rst
|
||||
Doc/library/ast.rst
|
||||
Doc/library/asyncio-extending.rst
|
||||
Doc/library/asyncio-policy.rst
|
||||
|
|
Loading…
Reference in New Issue