Skip to content

Commit e088e31

Browse files
committed
pythongh-130711: Document PyBaseObject_Type
Fixed pythongh-130711.
1 parent 75f38af commit e088e31

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Doc/c-api/structures.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ under :ref:`reference counting <countingrefs>`.
6363
See documentation of :c:type:`PyVarObject` above.
6464

6565

66+
.. c:var:: PyTypeObject PyBaseObject_Type
67+
68+
The base class of all other classes. It is the same object
69+
as :class:`object` in the Python layer.
70+
71+
6672
.. c:function:: int Py_Is(PyObject *x, PyObject *y)
6773
6874
Test if the *x* object is the *y* object, the same as ``x is y`` in Python.

0 commit comments

Comments
 (0)