We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c52ada commit c1311b8Copy full SHA for c1311b8
Doc/glossary.rst
@@ -812,8 +812,11 @@ Glossary
812
813
loader
814
An object that loads a module. It must define a method named
815
- :meth:`load_module`. A loader is typically returned by a
816
- :term:`finder`. See also:
+ :meth:`exec_module`, along with :meth:`create_module`.
+ The :meth:`load_module` method, which was used in earlier
817
+ versions of Python, has been deprecated since version 3.4
818
+ and should no longer be implemented in new code. A loader is
819
+ typically returned by a :term:`finder`. See also:
820
821
* :ref:`finders-and-loaders`
822
* :class:`importlib.abc.Loader`
0 commit comments