py_setdict method

void py_setdict(
  1. py_Ref self,
  2. int name,
  3. py_Ref val
)

Set an item to the object's __dict__.

Implementation

void py_setdict(
  py_Ref self,
  int name,
  py_Ref val,
) {
  return _py_setdict(
    self,
    name,
    val,
  );
}