Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 48bbc68

Browse files
committed
Merged revisions 86144 via svnmerge from
svn+ssh://[email protected]/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 ........
1 parent 26899f4 commit 48bbc68

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

Doc/c-api/dict.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,20 +117,18 @@ Dictionary Objects
117117

118118
.. cfunction:: PyObject* PyDict_Items(PyObject *p)
119119

120-
Return a :ctype:`PyListObject` containing all the items from the
121-
dictionary, as in the dictionary method :meth:`dict.items`.
120+
Return a :c:type:`PyListObject` containing all the items from the dictionary.
122121

123122

124123
.. cfunction:: PyObject* PyDict_Keys(PyObject *p)
125124

126-
Return a :ctype:`PyListObject` containing all the keys from the dictionary,
127-
as in the dictionary method :meth:`dict.keys`.
125+
Return a :c:type:`PyListObject` containing all the keys from the dictionary.
128126

129127

130128
.. cfunction:: PyObject* PyDict_Values(PyObject *p)
131129

132-
Return a :ctype:`PyListObject` containing all the values from the
133-
dictionary *p*, as in the dictionary method :meth:`dict.values`.
130+
Return a :c:type:`PyListObject` containing all the values from the dictionary
131+
*p*.
134132

135133

136134
.. cfunction:: Py_ssize_t PyDict_Size(PyObject *p)

0 commit comments

Comments
 (0)