mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
gh-129044: Update glossary entry for 'loader' to reflect current import system (#129073)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
This commit is contained in:
parent
8ceb6cb117
commit
e1fa2fcc7c
2 changed files with 5 additions and 4 deletions
|
|
@ -811,9 +811,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-subprocess.rst
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue