py_callcfunc method
Call a py_CFunction
in a safe way.
This function does extra checks to help you debug py_CFunction
.
Implementation
bool py_callcfunc(
py_CFunction f,
int argc,
py_Ref argv,
) {
return _py_callcfunc(
f,
argc,
argv,
);
}