https://github.com/python/cpython/commit/2f8eefe97ab03ecf92f85918a2b4cb23be7ee04c
commit: 2f8eefe97ab03ecf92f85918a2b4cb23be7ee04c
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: AA-Turner <[email protected]>
date: 2025-01-20T15:51:52Z
summary:

[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 e1fa2fcc7c1bf5291a7f71300b7828b49be9ab72)

Co-authored-by: nikalinov <[email protected]>
Co-authored-by: Adam Turner <[email protected]>

files:
M Doc/glossary.rst
M Doc/tools/.nitignore

diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index d8488ca99246d2..858c2b39ee5e33 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -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`
diff --git a/Doc/tools/.nitignore b/Doc/tools/.nitignore
index 8485766034ca77..9e36087ff10c3e 100644
--- a/Doc/tools/.nitignore
+++ b/Doc/tools/.nitignore
@@ -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

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to