Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6f1d5431
Commit
6f1d5431
authored
Apr 25, 2009
by
Jeroen Ruigrok van der Werven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reformat paragraph.
parent
325a997e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
Doc/c-api/dict.rst
Doc/c-api/dict.rst
+10
-10
No files found.
Doc/c-api/dict.rst
View file @
6f1d5431
...
@@ -146,16 +146,16 @@ Dictionary Objects
...
@@ -146,16 +146,16 @@ Dictionary Objects
.. cfunction:: int PyDict_Next(PyObject *p, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue)
.. cfunction:: int PyDict_Next(PyObject *p, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue)
Iterate over all key-value pairs in the dictionary *p*. The
:ctype:`Py_ssize_t`
Iterate over all key-value pairs in the dictionary *p*. The
referred to by *ppos* must be initialized to ``0`` prior to the first call
:ctype:`Py_ssize_t` referred to by *ppos* must be initialized to ``0``
to this function to start the iteration; the function returns true for each
prior to the first call to this function to start the iteration; the
pair in the dictionary, and false once all pairs have been reported. The
function returns true for each pair in the dictionary, and false once all
pa
rameters *pkey* and *pvalue* should either point to :ctype:`PyObject\*`
pa
irs have been reported. The parameters *pkey* and *pvalue* should either
variables that will be filled in with each key and value, respectively, or
point to :ctype:`PyObject\*` variables that will be filled in with each key
may be *NULL*. Any references returned through them are borrowed. *ppos*
and value, respectively, or may be *NULL*. Any references returned through
should not be altered during iteration. Its value represents offsets within
them are borrowed. *ppos* should not be altered during iteration. Its
the internal dictionary structure, and since the structure is sparse, the
value represents offsets within the internal dictionary structure, and
offsets are not consecutive.
since the structure is sparse, the
offsets are not consecutive.
For example::
For example::
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment