[Python-checkins] r86155 - python/branches/release31-maint/Doc/c-api/dict.rst

georg.brandl python-checkins at python.org
Thu Nov 4 08:24:56 CET 2010


Author: georg.brandl
Date: Thu Nov  4 08:24:55 2010
New Revision: 86155

Log:
Fix markup.

Modified:
   python/branches/release31-maint/Doc/c-api/dict.rst

Modified: python/branches/release31-maint/Doc/c-api/dict.rst
==============================================================================
--- python/branches/release31-maint/Doc/c-api/dict.rst	(original)
+++ python/branches/release31-maint/Doc/c-api/dict.rst	Thu Nov  4 08:24:55 2010
@@ -117,17 +117,17 @@
 
 .. cfunction:: PyObject* PyDict_Items(PyObject *p)
 
-   Return a :c:type:`PyListObject` containing all the items from the dictionary.
+   Return a :ctype:`PyListObject` containing all the items from the dictionary.
 
 
 .. cfunction:: PyObject* PyDict_Keys(PyObject *p)
 
-   Return a :c:type:`PyListObject` containing all the keys from the dictionary.
+   Return a :ctype:`PyListObject` containing all the keys from the dictionary.
 
 
 .. cfunction:: PyObject* PyDict_Values(PyObject *p)
 
-   Return a :c:type:`PyListObject` containing all the values from the dictionary
+   Return a :ctype:`PyListObject` containing all the values from the dictionary
    *p*.
 
 


More information about the Python-checkins mailing list