]> granicus.if.org Git - python/commitdiff
bpo-29917: DOC: Remove link from PyMethodDef (#890)
authorcsabella <chekat2@gmail.com>
Thu, 30 Mar 2017 00:27:50 +0000 (20:27 -0400)
committerSenthil Kumaran <skumaran@gatech.edu>
Thu, 30 Mar 2017 00:27:50 +0000 (17:27 -0700)
Doc/c-api/structures.rst

index f48119391f2bbd9ac8fd13713efceae14255c851..c080f317bee9d9d9d259db8e627534c7d581295f 100644 (file)
@@ -241,7 +241,7 @@ definition with the same method name.
    +==================+=============+===============================+
    | :attr:`name`     | char \*     | name of the member            |
    +------------------+-------------+-------------------------------+
-   | :attr:`type`     | int         | the type of the member in the |
+   | :attr:`!type`    | int         | the type of the member in the |
    |                  |             | C struct                      |
    +------------------+-------------+-------------------------------+
    | :attr:`offset`   | Py_ssize_t  | the offset in bytes that the  |
@@ -256,7 +256,7 @@ definition with the same method name.
    |                  |             | docstring                     |
    +------------------+-------------+-------------------------------+
 
-   :attr:`type` can be one of many ``T_`` macros corresponding to various C
+   :attr:`!type` can be one of many ``T_`` macros corresponding to various C
    types.  When the member is accessed in Python, it will be converted to the
    equivalent Python type.