py_emplacedict method

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

Prepare an insertion to the object's __dict__.

Implementation

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