py_getdict method

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

Get an item from the object's __dict__. Return NULL if not found.

Implementation

py_ItemRef py_getdict(
  py_Ref self,
  int name,
) {
  return _py_getdict(
    self,
    name,
  );
}