From d5dfddfa21879d7957d475909c02fc1810d52613 Mon Sep 17 00:00:00 2001 From: Apus Berliozi Date: Mon, 4 May 2026 12:26:30 +0700 Subject: [PATCH 1/3] pythongh-149093: Corrected circular link for mapping in the documentation --- Doc/glossary.rst | 8 ++++---- Doc/library/collections.abc.rst | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 6151143a97b420..2a2cccf9101c8a 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -991,12 +991,12 @@ Glossary mapping A container object that supports arbitrary key lookups and implements the - methods specified in the :class:`collections.abc.Mapping` or - :class:`collections.abc.MutableMapping` - :ref:`abstract base classes `. Examples - include :class:`dict`, :class:`collections.defaultdict`, + methods of :class:`collections.abc.Mapping` or + :class:`collections.abc.MutableMapping` :term:`abstract base classes `. + Examples include :class:`dict`, :class:`collections.defaultdict`, :class:`collections.OrderedDict` and :class:`collections.Counter`. + See more details on implemented methods :ref:`there `. meta path finder A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path finders are related to, but different from :term:`path entry finders diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 51853725b1b297..97641f3fe1e35d 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -313,7 +313,7 @@ Collections Abstract Base Classes -- Detailed Descriptions .. class:: Mapping MutableMapping - ABCs for read-only and mutable :term:`mappings `. + ABCs for read-only and mutable :ref:`mapping `. .. class:: MappingView ItemsView From f506e0235553ce8bf1bd629fc84796adef1188b3 Mon Sep 17 00:00:00 2001 From: Apus Berliozi Date: Mon, 4 May 2026 12:36:07 +0700 Subject: [PATCH 2/3] pythongh-149093: Cosmetic correction --- Doc/glossary.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 2a2cccf9101c8a..be1e733a3ccd17 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -997,6 +997,7 @@ Glossary :class:`collections.OrderedDict` and :class:`collections.Counter`. See more details on implemented methods :ref:`there `. + meta path finder A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path finders are related to, but different from :term:`path entry finders From 37e986a7b8587661de22d387f99866b506c5f2ee Mon Sep 17 00:00:00 2001 From: Apus Berliozi Date: Mon, 4 May 2026 12:43:43 +0700 Subject: [PATCH 3/3] pythongh-149093: Cosmetic correction --- Doc/glossary.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index be1e733a3ccd17..ddf75974fdde57 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -996,8 +996,8 @@ Glossary Examples include :class:`dict`, :class:`collections.defaultdict`, :class:`collections.OrderedDict` and :class:`collections.Counter`. - See more details on implemented methods :ref:`there `. - + See more details on implemented methods :ref:`there `. + meta path finder A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path finders are related to, but different from :term:`path entry finders