gh-130711: Document PyBaseObject_Type (GH-130712)

Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
This commit is contained in:
Yuki Kobayashi 2025-03-03 23:08:05 +09:00 committed by GitHub
parent 4f14b7e30c
commit b3c18bfd82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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.