PyCFunction_FastCallDict method

Pointer<PyObject> PyCFunction_FastCallDict(
  1. Pointer<PyObject> func,
  2. Pointer<Pointer<PyObject>> args,
  3. int nargs,
  4. Pointer<PyObject> kwargs,
)

Implementation

ffi.Pointer<PyObject> PyCFunction_FastCallDict(
  ffi.Pointer<PyObject> func,
  ffi.Pointer<ffi.Pointer<PyObject>> args,
  int nargs,
  ffi.Pointer<PyObject> kwargs,
) {
  return _PyCFunction_FastCallDict(
    func,
    args,
    nargs,
    kwargs,
  );
}