py_deldict method

bool py_deldict(
  1. py_Ref self,
  2. int name
)

Delete an item from the object's __dict__. Return true if the deletion is successful.

Implementation

bool py_deldict(
  py_Ref self,
  int name,
) {
  return _py_deldict(
    self,
    name,
  );
}