Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
Fix spacing.
  • Loading branch information
ZeroIntensity committed Feb 22, 2026
commit c6d0094bfc2c84c9b5f404648ae4043d7267eed4
4 changes: 4 additions & 0 deletions Doc/c-api/typeobj.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1498,12 +1498,14 @@ and :c:data:`PyType_Type` effectively act as defaults.)
This flag is present in header files, but is not be used.
It will be removed in a future version of CPython


.. c:macro:: Py_TPFLAGS_HAVE_VERSION_TAG
This is a :term:`soft deprecated` macro that does nothing.
Historically, this would indicate that the
:c:member:`~PyTypeObject.tp_version_tag` field was available and
initialized.


.. c:macro:: Py_TPFLAGS_INLINE_VALUES
This bit indicates that instances of this type will have an "inline values"
array (containing the object's attributes) placed directly after the end
Expand All @@ -1517,6 +1519,7 @@ and :c:data:`PyType_Type` effectively act as defaults.)

.. versionadded:: 3.13


.. c:macro:: Py_TPFLAGS_IS_ABSTRACT
This bit indicates that this is an abstract type and therefore cannot
be instantiated.
Expand All @@ -1528,6 +1531,7 @@ and :c:data:`PyType_Type` effectively act as defaults.)
.. seealso::
:mod:`abc`


.. c:macro:: Py_TPFLAGS_HAVE_STACKLESS_EXTENSION

Internal. Do not set or unset this flag.
Expand Down