Skip to content

Commit a394837

Browse files
Add all under one section
1 parent 66f3faa commit a394837

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

Doc/c-api/dict.rst

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -428,16 +428,16 @@ Dictionary Objects
428428
.. versionadded:: 3.12
429429
430430
431+
Dictionary View Objects
432+
^^^^^^^^^^^^^^^^^^^^^^^
433+
431434
.. c:function:: int PyDictViewSet_Check(PyObject *op)
432435
433436
Return true if *op* is a view of a set inside a dictionary. This is currently
434437
equivalent to :c:expr:`PyDictKeys_Check(op) || PyDictItems_Check(op)`. This
435438
function always succeeds.
436439
437440
438-
Dictionary Keys Objects
439-
^^^^^^^^^^^^^^^^^^^^^^^
440-
441441
.. c:var:: PyTypeObject PyDictKeys_Type
442442
443443
Type object for a view of dictionary keys. In Python, this is the type of
@@ -450,9 +450,6 @@ Dictionary Keys Objects
450450
always succeeds.
451451
452452
453-
Dictionary Values Objects
454-
^^^^^^^^^^^^^^^^^^^^^^^^^
455-
456453
.. c:var:: PyTypeObject PyDictValues_Type
457454
458455
Type object for a view of dictionary values. In Python, this is the type of
@@ -465,9 +462,6 @@ Dictionary Values Objects
465462
always succeeds.
466463
467464
468-
Dictionary Items Objects
469-
^^^^^^^^^^^^^^^^^^^^^^^^
470-
471465
.. c:var:: PyTypeObject PyDictItems_Type
472466
473467
Type object for a view of dictionary items. In Python, this is the type of

0 commit comments

Comments
 (0)