summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/mapping.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-09-13 08:08:32 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-09-13 08:08:32 (GMT)
commit2befd9a34c2de6a35aa9ea0f2e63f6cfaeed923b (patch)
treed8a9071bf08aaa05504465dc1cf77f852637c040 /Doc/c-api/mapping.rst
parentb2f9e3bd5bcea5e0f10db61b6ad873844fdacded (diff)
downloadcpython-2befd9a34c2de6a35aa9ea0f2e63f6cfaeed923b.zip
cpython-2befd9a34c2de6a35aa9ea0f2e63f6cfaeed923b.tar.gz
cpython-2befd9a34c2de6a35aa9ea0f2e63f6cfaeed923b.tar.bz2
Merged revisions 74762 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r74762 | ezio.melotti | 2009-09-13 07:48:45 +0300 (Sun, 13 Sep 2009) | 1 line more list()s on dictviews ........
Diffstat (limited to 'Doc/c-api/mapping.rst')
-rw-r--r--Doc/c-api/mapping.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/mapping.rst b/Doc/c-api/mapping.rst
index 1d0ed50..5b2de14 100644
--- a/Doc/c-api/mapping.rst
+++ b/Doc/c-api/mapping.rst
@@ -51,20 +51,20 @@ Mapping Protocol
.. cfunction:: PyObject* PyMapping_Keys(PyObject *o)
On success, return a list of the keys in object *o*. On failure, return *NULL*.
- This is equivalent to the Python expression ``o.keys()``.
+ This is equivalent to the Python expression ``list(o.keys())``.
.. cfunction:: PyObject* PyMapping_Values(PyObject *o)
On success, return a list of the values in object *o*. On failure, return
- *NULL*. This is equivalent to the Python expression ``o.values()``.
+ *NULL*. This is equivalent to the Python expression ``list(o.values())``.
.. cfunction:: PyObject* PyMapping_Items(PyObject *o)
On success, return a list of the items in object *o*, where each item is a tuple
containing a key-value pair. On failure, return *NULL*. This is equivalent to
- the Python expression ``o.items()``.
+ the Python expression ``list(o.items())``.
.. cfunction:: PyObject* PyMapping_GetItemString(PyObject *o, char *key)