py_dict_setitem method

bool py_dict_setitem(
  1. py_Ref self,
  2. py_Ref key,
  3. py_Ref val
)

true: success, false: error

Implementation

bool py_dict_setitem(
  py_Ref self,
  py_Ref key,
  py_Ref val,
) {
  return _py_dict_setitem(
    self,
    key,
    val,
  );
}