https://github.com/python/cpython/commit/30e8bd2a41e6e547a76021d75d75670995c2e948
commit: 30e8bd2a41e6e547a76021d75d75670995c2e948
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: encukou <[email protected]>
date: 2025-03-10T15:05:38+01:00
summary:

[3.13] gh-130711: Document `PyBaseObject_Type` (GH-130712) (GH-130792)


(cherry picked from commit b3c18bfd828ba90b9c712da74095c4a052887655)

Co-authored-by: Yuki Kobayashi <[email protected]>
Co-authored-by: Peter Bierma <[email protected]>

files:
M Doc/c-api/structures.rst

diff --git a/Doc/c-api/structures.rst b/Doc/c-api/structures.rst
index f9461ab01f6049..a838434ca8125d 100644
--- a/Doc/c-api/structures.rst
+++ b/Doc/c-api/structures.rst
@@ -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.

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to