]> granicus.if.org Git - python/commitdiff
Merged revisions 86144 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Wed, 3 Nov 2010 21:39:07 +0000 (21:39 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 3 Nov 2010 21:39:07 +0000 (21:39 +0000)
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
........

Doc/c-api/dict.rst

index 89db16e4442431f56825b76fae09e8b2d69e40f3..23511689bd1cf03914f702e3a267a577427e43c1 100644 (file)
@@ -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)