Skip to content

Commit 416f10a

Browse files
committed
Fix indentation.
1 parent c6d0094 commit 416f10a

1 file changed

Lines changed: 19 additions & 16 deletions

File tree

Doc/c-api/typeobj.rst

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1500,27 +1500,30 @@ and :c:data:`PyType_Type` effectively act as defaults.)
15001500

15011501

15021502
.. c:macro:: Py_TPFLAGS_HAVE_VERSION_TAG
1503-
This is a :term:`soft deprecated` macro that does nothing.
1504-
Historically, this would indicate that the
1505-
:c:member:`~PyTypeObject.tp_version_tag` field was available and
1506-
initialized.
1503+
1504+
This is a :term:`soft deprecated` macro that does nothing.
1505+
Historically, this would indicate that the
1506+
:c:member:`~PyTypeObject.tp_version_tag` field was available and
1507+
initialized.
15071508

15081509

15091510
.. c:macro:: Py_TPFLAGS_INLINE_VALUES
1510-
This bit indicates that instances of this type will have an "inline values"
1511-
array (containing the object's attributes) placed directly after the end
1512-
of the object.
15131511
1514-
This requires that :c:macro:`Py_TPFLAGS_HAVE_GC` is set.
1512+
This bit indicates that instances of this type will have an "inline values"
1513+
array (containing the object's attributes) placed directly after the end
1514+
of the object.
15151515

1516-
**Inheritance:**
1516+
This requires that :c:macro:`Py_TPFLAGS_HAVE_GC` is set.
15171517

1518-
This flag is not inherited.
1518+
**Inheritance:**
15191519

1520-
.. versionadded:: 3.13
1520+
This flag is not inherited.
1521+
1522+
.. versionadded:: 3.13
15211523

15221524

15231525
.. c:macro:: Py_TPFLAGS_IS_ABSTRACT
1526+
15241527
This bit indicates that this is an abstract type and therefore cannot
15251528
be instantiated.
15261529

@@ -1534,12 +1537,12 @@ and :c:data:`PyType_Type` effectively act as defaults.)
15341537

15351538
.. c:macro:: Py_TPFLAGS_HAVE_STACKLESS_EXTENSION
15361539
1537-
Internal. Do not set or unset this flag.
1538-
Historically, this was a reserved flag for use in Stackless Python.
1540+
Internal. Do not set or unset this flag.
1541+
Historically, this was a reserved flag for use in Stackless Python.
15391542

1540-
.. warning::
1541-
This flag is present in header files, but is not be used.
1542-
This may be removed in a future version of CPython.
1543+
.. warning::
1544+
This flag is present in header files, but is not be used.
1545+
This may be removed in a future version of CPython.
15431546

15441547

15451548
.. c:member:: const char* PyTypeObject.tp_doc

0 commit comments

Comments
 (0)