]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-130711: Document `PyBaseObject_Type` (GH-130712) (GH-130792)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 10 Mar 2025 14:05:38 +0000 (15:05 +0100)
committerGitHub <noreply@github.com>
Mon, 10 Mar 2025 14:05:38 +0000 (15:05 +0100)
(cherry picked from commit b3c18bfd828ba90b9c712da74095c4a052887655)

Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Doc/c-api/structures.rst

index f9461ab01f60492cbf34e68b074cc84a42d8a0e6..a838434ca8125d30705786c617d402a6c4aadf53 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.