https://github.com/python/cpython/commit/b3c18bfd828ba90b9c712da74095c4a052887655
commit: b3c18bfd828ba90b9c712da74095c4a052887655
branch: main
author: Yuki Kobayashi <drsuaimqj...@gmail.com>
committer: encukou <encu...@gmail.com>
date: 2025-03-03T15:08:05+01:00
summary:

gh-130711: Document `PyBaseObject_Type` (GH-130712)


Co-authored-by: Peter Bierma <zintensity...@gmail.com>

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

diff --git a/Doc/c-api/structures.rst b/Doc/c-api/structures.rst
index d333df397782e0..987bc167c68d6c 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 -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to