py_tpcall method

bool py_tpcall(
  1. int type,
  2. int argc,
  3. py_Ref argv
)

Call a type to create a new instance.

Implementation

bool py_tpcall(
  int type,
  int argc,
  py_Ref argv,
) {
  return _py_tpcall(
    type,
    argc,
    argv,
  );
}