Iterate over (key, value) pairs in a dictionary. If the PydObject is not
a dict, this simply does nothing. (It iterates over no items.) You
should not attempt to modify the dictionary while iterating through it,
with the exception of modifying values. Adding or removing items while
iterating through it is an especially bad idea.
Iterate over (key, value) pairs in a dictionary. If the PydObject is not a dict, this simply does nothing. (It iterates over no items.) You should not attempt to modify the dictionary while iterating through it, with the exception of modifying values. Adding or removing items while iterating through it is an especially bad idea.