Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
doc: use sentence case for headers
Add also a title in Doc/library/stdtypes.rst.
  • Loading branch information
vstinner committed Feb 16, 2026
commit 258b3dff42d0231f349df71066d95f55d0bfab95
8 changes: 4 additions & 4 deletions Doc/c-api/dict.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.. _dictobjects:

Dictionary Objects
Dictionary objects
------------------

.. index:: pair: object; dictionary
Expand Down Expand Up @@ -444,7 +444,7 @@ Dictionary Objects
.. versionadded:: 3.12


Dictionary View Objects
Dictionary view objects
^^^^^^^^^^^^^^^^^^^^^^^

.. c:function:: int PyDictViewSet_Check(PyObject *op)
Expand Down Expand Up @@ -514,14 +514,14 @@ Frozen dictionary objects
.. c:function:: int PyAnyDict_CheckExact(PyObject *p)

Return true if *p* is a :class:`dict` object or a :class:`frozendict` object,
but not an instance of a subtype of the :class:`!dict` or
but not an instance of a subtype of the :class:`!dict` or
:class:`!frozendict` type.
This function always succeeds.


.. c:function:: int PyFrozenDict_Check(PyObject *p)

Return true if *p* is a :class:`frozendict` object or an instance of a
Return true if *p* is a :class:`frozendict` object or an instance of a
subtype of the :class:`!frozendict` type.
This function always succeeds.

Expand Down
3 changes: 3 additions & 0 deletions Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5839,6 +5839,9 @@ An example of dictionary view usage::
500


Frozen dictionaries
-------------------

.. class:: frozendict(**kwargs)
frozendict(mapping, /, **kwargs)
frozendict(iterable, /, **kwargs)
Expand Down
Loading