Skip to content
Open
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
12 changes: 6 additions & 6 deletions Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ are always available. They are listed here in alphabetical order.
dict(iterable, /, **kwargs)
:noindex:
Create a new dictionary. The :class:`dict` object is the dictionary class.
Create a new dictionary. The :class:`!dict` object is the dictionary class.
See :class:`dict` and :ref:`typesmapping` for documentation about this class.

For other containers see the built-in :class:`frozendict`, :class:`list`,
Expand Down Expand Up @@ -872,7 +872,7 @@ are always available. They are listed here in alphabetical order.
frozendict(iterable, /, **kwargs)
:noindex:
Create a new frozen dictionary. The :class:`frozendict` object is a built-in class.
Create a new frozen dictionary. The :class:`!frozendict` object is a built-in class.
See :class:`frozendict` and :ref:`typesmapping` for documentation about this class.

For other containers see the built-in :class:`dict`, :class:`list`, :class:`set`,
Expand All @@ -885,8 +885,8 @@ are always available. They are listed here in alphabetical order.
.. class:: frozenset(iterable=(), /)
:noindex:

Return a new :class:`frozenset` object, optionally with elements taken from
*iterable*. ``frozenset`` is a built-in class. See :class:`frozenset` and
Return a new :class:`!frozenset` object, optionally with elements taken from
*iterable*. :class:`!frozenset` is a built-in class. See :class:`frozenset` and
:ref:`types-set` for documentation about this class.

For other containers see the built-in :class:`set`, :class:`list`,
Expand Down Expand Up @@ -1813,8 +1813,8 @@ are always available. They are listed here in alphabetical order.
.. class:: set(iterable=(), /)
:noindex:

Return a new :class:`set` object, optionally with elements taken from
*iterable*. ``set`` is a built-in class. See :class:`set` and
Return a new :class:`!set` object, optionally with elements taken from
*iterable*. :class:`!set` is a built-in class. See :class:`set` and
:ref:`types-set` for documentation about this class.

For other containers see the built-in :class:`frozenset`, :class:`list`,
Expand Down
Loading