[Python-checkins] cpython (3.4): issue9014: Include more formatting on :c:type:`PyObject` etc.

gregory.p.smith python-checkins at python.org
Tue Apr 14 20:21:38 CEST 2015


https://hg.python.org/cpython/rev/752ea0acc37e
changeset:   95652:752ea0acc37e
branch:      3.4
parent:      95650:760c5cfacbaa
user:        Gregory P. Smith <greg at krypto.org>
date:        Tue Apr 14 11:21:05 2015 -0700
summary:
  issue9014: Include more formatting on :c:type:`PyObject` etc.

files:
  Doc/c-api/structures.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/c-api/structures.rst b/Doc/c-api/structures.rst
--- a/Doc/c-api/structures.rst
+++ b/Doc/c-api/structures.rst
@@ -22,9 +22,9 @@
    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`.
 
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list