PyEval_CallObjectWithKeywords method

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

Implementation

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