py_emplacedict method

py_ItemRef py_emplacedict(
  1. py_Ref self,
  2. int name
)

Prepare an insertion to the object's __dict__.

Implementation

py_ItemRef py_emplacedict(
  py_Ref self,
  int name,
) {
  return _py_emplacedict(
    self,
    name,
  );
}