tp_flags docs: fix indentation (#106420)

This commit is contained in:
Jelle Zijlstra 2023-07-04 22:08:25 -07:00 committed by GitHub
parent 7bb9fa5ae4
commit ad075682ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1143,14 +1143,14 @@ and :c:type:`PyType_Type` effectively act as defaults.)
:const:`Py_TPFLAGS_IMMUTABLETYPE` flag set. For extension types, it is
inherited whenever :c:member:`~PyTypeObject.tp_descr_get` is inherited.
.. data:: Py_TPFLAGS_MANAGED_DICT
.. data:: Py_TPFLAGS_MANAGED_DICT
This bit indicates that instances of the class have a ``__dict__``
attribute, and that the space for the dictionary is managed by the VM.
This bit indicates that instances of the class have a ``__dict__``
attribute, and that the space for the dictionary is managed by the VM.
If this flag is set, :const:`Py_TPFLAGS_HAVE_GC` should also be set.
If this flag is set, :const:`Py_TPFLAGS_HAVE_GC` should also be set.
.. versionadded:: 3.12
.. versionadded:: 3.12
**Inheritance:**
@ -1158,12 +1158,12 @@ and :c:type:`PyType_Type` effectively act as defaults.)
:c:member:`~PyTypeObject.tp_dictoffset` field is set in a superclass.
.. data:: Py_TPFLAGS_MANAGED_WEAKREF
.. data:: Py_TPFLAGS_MANAGED_WEAKREF
This bit indicates that instances of the class should be weakly
referenceable.
This bit indicates that instances of the class should be weakly
referenceable.
.. versionadded:: 3.12
.. versionadded:: 3.12
**Inheritance:**