Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Doc/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -991,12 +991,13 @@ 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 <collections-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 <abstract base class>`.
Examples include :class:`dict`, :class:`collections.defaultdict`,
:class:`collections.OrderedDict` and :class:`collections.Counter`.

See more details on implemented methods :ref:`there <collections-abstract-base-classes>`.

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
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/collections.abc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ Collections Abstract Base Classes -- Detailed Descriptions
.. class:: Mapping
MutableMapping

ABCs for read-only and mutable :term:`mappings <mapping>`.
ABCs for read-only and mutable :ref:`mapping <typesmapping>`.

.. class:: MappingView
ItemsView
Expand Down
Loading