diff options
author | Georg Brandl <georg@python.org> | 2010-11-04 07:24:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-04 07:24:55 (GMT) |
commit | fc5f381caa8273765a3011fffe16c42690ad1aa2 (patch) | |
tree | 2ceb9c137e60225dee91d5da8dba43a414e67865 /Doc | |
parent | 8f8ed9419608fb1c69ba3011fb956cc854140b94 (diff) | |
download | cpython-fc5f381caa8273765a3011fffe16c42690ad1aa2.zip cpython-fc5f381caa8273765a3011fffe16c42690ad1aa2.tar.gz cpython-fc5f381caa8273765a3011fffe16c42690ad1aa2.tar.bz2 |
Fix markup.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/dict.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst index 2351168..5943887 100644 --- a/Doc/c-api/dict.rst +++ b/Doc/c-api/dict.rst @@ -117,17 +117,17 @@ Dictionary Objects .. 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*. |