]> granicus.if.org Git - python/commitdiff
update items/keys/values doc #10300
authorBenjamin Peterson <benjamin@python.org>
Wed, 3 Nov 2010 21:35:28 +0000 (21:35 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 3 Nov 2010 21:35:28 +0000 (21:35 +0000)
Doc/c-api/dict.rst

index 836b108af14c0ca2c1a09d41c40c461ddc1ce429..6df84e075a5f9b30a998a91ab24a23c9d2cb4f50 100644 (file)
@@ -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)