py_call method
Call a function.
It prepares the stack and then performs a vectorcall(argc, 0, false)
.
The result will be set to py_retval()
.
The stack remains unchanged after the operation.
Implementation
bool py_call(
py_Ref f,
int argc,
py_Ref argv,
) {
return _py_call(
f,
argc,
argv,
);
}