]> granicus.if.org Git - python/commitdiff
issue9014: Include more formatting on :c:type:`PyObject` etc.
authorGregory P. Smith <greg@krypto.org>
Tue, 14 Apr 2015 18:21:05 +0000 (11:21 -0700)
committerGregory P. Smith <greg@krypto.org>
Tue, 14 Apr 2015 18:21:05 +0000 (11:21 -0700)
Doc/c-api/structures.rst

index 7f01c3160210bd51cc7dbd07aa4218e9ab2bf86a..7f1cc691489468e3c1f2fbb255d30ec827ca18f8 100644 (file)
@@ -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
    object.  In a normal "release" build, it contains only the object's
    reference count and a pointer to the corresponding type object.
-   Nothing is actually declared to be a PyObject, but every pointer to a
-   Python object can be cast to a PyObject*.  Access to the members
-   must be done by using the macros :c:macro:`Py_REFCNT` and
+   Nothing is actually declared to be a :c:type:`PyObject`, but every pointer
+   to a Python object can be cast to a :c:type:`PyObject*`.  Access to the
+   members must be done by using the macros :c:macro:`Py_REFCNT` and
    :c:macro:`Py_TYPE`.