[Python-checkins] r86144 - python/branches/py3k/Doc/c-api/dict.rst

benjamin.peterson python-checkins at python.org
Wed Nov 3 22:35:29 CET 2010


Author: benjamin.peterson
Date: Wed Nov  3 22:35:28 2010
New Revision: 86144

Log:
update items/keys/values doc #10300

Modified:
   python/branches/py3k/Doc/c-api/dict.rst

Modified: python/branches/py3k/Doc/c-api/dict.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/dict.rst	(original)
+++ python/branches/py3k/Doc/c-api/dict.rst	Wed Nov  3 22:35:28 2010
@@ -112,20 +112,18 @@
 
 .. 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)


More information about the Python-checkins mailing list