types.DictType and
types.DictionaryType.
PyString_FromString(key).
0
prior to the first call to this function to start the iteration; the
function returns true for each pair in the dictionary, and false once
all pairs have been reported. The parameters pkey and
pvalue should either point to PyObject* variables that
will be filled in with each key and value, respectively, or may be
NULL. The dictionary p must not be mutated during iteration.
For example:
PyObject *key, *value;
int pos = 0;
while (PyDict_Next(self->dict, &pos, &key, &value)) {
/* do something interesting with the values... */
...
}
See About this document... for information on suggesting changes.