Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Doc/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -811,9 +811,12 @@
processed.

loader
An object that loads a module. It must define a method named

Check warning on line 814 in Doc/glossary.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:meth reference target not found: exec_module [ref.meth]

Check warning on line 814 in Doc/glossary.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:meth reference target not found: create_module [ref.meth]

Check warning on line 814 in Doc/glossary.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:meth reference target not found: load_module [ref.meth]
:meth:`load_module`. A loader is typically returned by a
:term:`finder`. See also:
:meth:`exec_module`, along with :meth:`create_module`.
The :meth:`load_module` method, which was used in earlier
versions of Python, has been deprecated since version 3.4
and should no longer be implemented in new code. A loader is
typically returned by a :term:`finder`. See also:

* :ref:`finders-and-loaders`
* :class:`importlib.abc.Loader`
Expand Down
Loading