From 5cc4e56ce7f7f4f3931edd5670ca69cbc98d855f Mon Sep 17 00:00:00 2001 From: Lincoln-developer Date: Thu, 25 Apr 2024 15:15:21 +0300 Subject: [PATCH 1/2] Updated the finder glossary entry --- Doc/glossary.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 3d74d550dc345a..e5646817d9f46d 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -430,11 +430,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 + Since Python 2.3, there are two types of finder: :term:`meta path finders ` for use with :data:`sys.meta_path`, and :term:`path entry finders ` 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 From 9de3ebb3a935c61f85d9c5bda059a8a8031a8990 Mon Sep 17 00:00:00 2001 From: Lincoln <71312724+Lincoln-developer@users.noreply.github.com> Date: Thu, 30 May 2024 11:30:35 +0300 Subject: [PATCH 2/2] Update Doc/glossary.rst Co-authored-by: Petr Viktorin --- Doc/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index e7e700fe71466e..190c84445ce50d 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -424,7 +424,7 @@ Glossary An object that tries to find the :term:`loader` for a module that is being imported. - Since Python 2.3, there are two types of finder: :term:`meta path finders + There are two types of finder: :term:`meta path finders ` for use with :data:`sys.meta_path`, and :term:`path entry finders ` for use with :data:`sys.path_hooks`.