py_getdict method
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,
);
}
Get an item from the object's __dict__
.
Return NULL
if not found.
py_ItemRef py_getdict(
py_Ref self,
int name,
) {
return _py_getdict(
self,
name,
);
}