]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-130711: Document `PyBaseObject_Type` (GH-130712)
authorYuki Kobayashi <drsuaimqjgar@gmail.com>
Mon, 3 Mar 2025 14:08:05 +0000 (23:08 +0900)
committerGitHub <noreply@github.com>
Mon, 3 Mar 2025 14:08:05 +0000 (15:08 +0100)
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Doc/c-api/structures.rst

index d333df397782e0cf746628c0c62e63f97666ed5e..987bc167c68d6cd2eb72a02c6b13c3720c87d454 100644 (file)
@@ -63,6 +63,11 @@ under :ref:`reference counting <countingrefs>`.
    See documentation of :c:type:`PyVarObject` above.
 
 
+.. c:var:: PyTypeObject PyBaseObject_Type
+
+   The base class of all other objects, the same as :class:`object` in Python.
+
+
 .. c:function:: int Py_Is(PyObject *x, PyObject *y)
 
    Test if the *x* object is the *y* object, the same as ``x is y`` in Python.