PyObject_CallFunction_SizeT method

Pointer<PyObject> PyObject_CallFunction_SizeT(
  1. Pointer<PyObject> callable,
  2. Pointer<Char> format
)

Implementation

ffi.Pointer<PyObject> PyObject_CallFunction_SizeT(
  ffi.Pointer<PyObject> callable,
  ffi.Pointer<ffi.Char> format,
) {
  return _PyObject_CallFunction_SizeT(
    callable,
    format,
  );
}