py_set_item: Set an item for a Python object
Description
Set an item on a Python object, similar to how
x[name] = value might be used in Python code to
set an item called name with value value on object
x. The object's __setitem__ method will be called.
Usage
py_set_item(x, name, value)
Value
The (mutated) object x, invisibly.