diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-11-03 21:35:28 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-11-03 21:35:28 (GMT) |
commit | 3c6830ca8f406e4a18843aa15186048877555e45 (patch) | |
tree | cdb5fc490138d5184f95605617e9afa14c3e1da6 | |
parent | 327433f864ee0a010997b77fc455d75aba79bd1f (diff) | |
download | cpython-3c6830ca8f406e4a18843aa15186048877555e45.zip cpython-3c6830ca8f406e4a18843aa15186048877555e45.tar.gz cpython-3c6830ca8f406e4a18843aa15186048877555e45.tar.bz2 |
update items/keys/values doc #10300
-rw-r--r-- | Doc/c-api/dict.rst | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst index 836b108..6df84e0 100644 --- a/Doc/c-api/dict.rst +++ b/Doc/c-api/dict.rst @@ -112,20 +112,18 @@ Dictionary Objects .. c:function:: PyObject* PyDict_Items(PyObject *p) - Return a :c:type:`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. .. c:function:: PyObject* PyDict_Keys(PyObject *p) - Return a :c:type:`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. .. c:function:: PyObject* PyDict_Values(PyObject *p) - Return a :c:type:`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*. .. c:function:: Py_ssize_t PyDict_Size(PyObject *p) |