PyObject_Call method

Pointer<PyObject> PyObject_Call(
  1. Pointer<PyObject> callable,
  2. Pointer<PyObject> args,
  3. Pointer<PyObject> kwargs
)

Implementation

ffi.Pointer<PyObject> PyObject_Call(
  ffi.Pointer<PyObject> callable,
  ffi.Pointer<PyObject> args,
  ffi.Pointer<PyObject> kwargs,
) {
  return _PyObject_Call(
    callable,
    args,
    kwargs,
  );
}