diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-30 08:57:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 08:57:36 (GMT) |
commit | fae9c92ba7c88fd00f80b40f347e4c2eabaa850a (patch) | |
tree | f3643601b34af20a74aed0f1980925988560ab21 | |
parent | e408059711814be9bf7e9c72ecc4c34fb2b8356f (diff) | |
download | cpython-fae9c92ba7c88fd00f80b40f347e4c2eabaa850a.zip cpython-fae9c92ba7c88fd00f80b40f347e4c2eabaa850a.tar.gz cpython-fae9c92ba7c88fd00f80b40f347e4c2eabaa850a.tar.bz2 |
[3.12] gh-118055: Update the finder glossary entry (GH-118278) (GH-119774)
gh-118055: Update the finder glossary entry (GH-118278)
(cherry picked from commit db009348b4b7a4b0aec39472ea074c1b5feeba9b)
Co-authored-by: Lincoln <71312724+Lincoln-developer@users.noreply.github.com>
-rw-r--r-- | Doc/glossary.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index d006f2b..d1745bf 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -433,11 +433,11 @@ Glossary An object that tries to find the :term:`loader` for a module that is being imported. - Since Python 3.3, there are two types of finder: :term:`meta path finders + There are two types of finder: :term:`meta path finders <meta path finder>` for use with :data:`sys.meta_path`, and :term:`path entry finders <path entry finder>` for use with :data:`sys.path_hooks`. - See :pep:`302`, :pep:`420` and :pep:`451` for much more detail. + See :ref:`importsystem` and :mod:`importlib` for much more detail. floor division Mathematical division that rounds down to nearest integer. The floor |