PyObject_CallObject method

Pointer<PyObject> PyObject_CallObject(
  1. Pointer<PyObject> callable,
  2. Pointer<PyObject> args
)

Implementation

ffi.Pointer<PyObject> PyObject_CallObject(
  ffi.Pointer<PyObject> callable,
  ffi.Pointer<PyObject> args,
) {
  return _PyObject_CallObject(
    callable,
    args,
  );
}