py_dict_setitem_by_int method

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

true: success, false: error

Implementation

bool py_dict_setitem_by_int(
  py_Ref self,
  int key,
  py_Ref val,
) {
  return _py_dict_setitem_by_int(
    self,
    key,
    val,
  );
}