summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-11-03 21:39:07 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-11-03 21:39:07 (GMT)
commit48bbc68c8bfefc25759c98bf43b6bc33b6b8bdf0 (patch)
treee56d0544567f67944510942b05cb9165ea2ff985 /Doc/c-api
parent26899f476e6d8445161a57241643456ac292f73a (diff)
downloadcpython-48bbc68c8bfefc25759c98bf43b6bc33b6b8bdf0.zip
cpython-48bbc68c8bfefc25759c98bf43b6bc33b6b8bdf0.tar.gz
cpython-48bbc68c8bfefc25759c98bf43b6bc33b6b8bdf0.tar.bz2
Merged revisions 86144 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86144 | benjamin.peterson | 2010-11-03 16:35:28 -0500 (Wed, 03 Nov 2010) | 1 line update items/keys/values doc #10300 ........
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/dict.rst10
1 files changed, 4 insertions, 6 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst
index 89db16e..2351168 100644
--- a/Doc/c-api/dict.rst
+++ b/Doc/c-api/dict.rst
@@ -117,20 +117,18 @@ Dictionary Objects
.. cfunction:: PyObject* PyDict_Items(PyObject *p)
- Return a :ctype:`PyListObject` containing all the items from the
- dictionary, as in the dictionary method :meth:`dict.items`.
+ Return a :c:type:`PyListObject` containing all the items from the dictionary.
.. cfunction:: PyObject* PyDict_Keys(PyObject *p)
- Return a :ctype:`PyListObject` containing all the keys from the dictionary,
- as in the dictionary method :meth:`dict.keys`.
+ Return a :c:type:`PyListObject` containing all the keys from the dictionary.
.. cfunction:: PyObject* PyDict_Values(PyObject *p)
- Return a :ctype:`PyListObject` containing all the values from the
- dictionary *p*, as in the dictionary method :meth:`dict.values`.
+ Return a :c:type:`PyListObject` containing all the values from the dictionary
+ *p*.
.. cfunction:: Py_ssize_t PyDict_Size(PyObject *p)