PyObject_SetItem ( o key v -- int ) (original) (raw)

PyObject_SetItem ( o key v -- int )

Vocabulary
python.ffi

Inputs

o an object
key an object
v an object

Outputs

int an object

Definition

USING: alien.c-types alien.syntax ;

IN: python.ffi

LIBRARY: python FUNCTION: int PyObject_SetItem
( PyObject* o, PyObject* key, PyObject* v )