Michael Hudson:

Update docs for PyDict_Next() based on the most recent changes to the
dictionary code.

This closes SF patch #409864.
This commit is contained in:
Fred Drake 2001-04-13 17:55:02 +00:00
parent 058dae37a6
commit 8d00a0ffc3
1 changed files with 23 additions and 1 deletions

View File

@ -3397,7 +3397,8 @@ function returns true for each pair in the dictionary, and false once
all pairs have been reported. The parameters \var{pkey} and
\var{pvalue} should either point to \ctype{PyObject*} variables that
will be filled in with each key and value, respectively, or may be
\NULL. The dictionary \var{p} must not be mutated during iteration.
\NULL.
For example:
\begin{verbatim}
@ -3409,6 +3410,27 @@ while (PyDict_Next(self->dict, &pos, &key, &value)) {
...
}
\end{verbatim}
The dictionary \var{p} should not be mutated during iteration. It is
safe (since Python 2.1) to modify the values of the keys as you
iterate over the dictionary, for example:
\begin{verbatim}
PyObject *key, *value;
int pos = 0;
while (PyDict_Next(self->dict, &pos, &key, &value)) {
int i = PyInt_AS_LONG(value) + 1;
PyObject *o = PyInt_FromLong(i);
if (o == NULL)
return -1;
if (PyDict_SetItem(self->dict, key, o) < 0) {
Py_DECREF(o);
return -1;
}
Py_DECREF(o);
}
\end{verbatim}
\end{cfuncdesc}