py_setslot method

void py_setslot(
  1. py_Ref self,
  2. int i,
  3. py_Ref val
)

Set the i-th slot of the object.

Implementation

void py_setslot(
  py_Ref self,
  int i,
  py_Ref val,
) {
  return _py_setslot(
    self,
    i,
    val,
  );
}