mirror of https://github.com/python/cpython.git
issue9014: Include more formatting on :c:type:`PyObject` etc.
This commit is contained in:
commit
a8b120641b
|
@ -22,9 +22,9 @@ the definition of all other Python objects.
|
||||||
contains the information Python needs to treat a pointer to an object as an
|
contains the information Python needs to treat a pointer to an object as an
|
||||||
object. In a normal "release" build, it contains only the object's
|
object. In a normal "release" build, it contains only the object's
|
||||||
reference count and a pointer to the corresponding type object.
|
reference count and a pointer to the corresponding type object.
|
||||||
Nothing is actually declared to be a PyObject, but every pointer to a
|
Nothing is actually declared to be a :c:type:`PyObject`, but every pointer
|
||||||
Python object can be cast to a PyObject*. Access to the members
|
to a Python object can be cast to a :c:type:`PyObject*`. Access to the
|
||||||
must be done by using the macros :c:macro:`Py_REFCNT` and
|
members must be done by using the macros :c:macro:`Py_REFCNT` and
|
||||||
:c:macro:`Py_TYPE`.
|
:c:macro:`Py_TYPE`.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue