PyEval_EvalCodeEx method

Pointer<PyObject> PyEval_EvalCodeEx(
  1. Pointer<PyObject> co,
  2. Pointer<PyObject> globals,
  3. Pointer<PyObject> locals,
  4. Pointer<Pointer<PyObject>> args,
  5. int argc,
  6. Pointer<Pointer<PyObject>> kwds,
  7. int kwdc,
  8. Pointer<Pointer<PyObject>> defs,
  9. int defc,
  10. Pointer<PyObject> kwdefs,
  11. Pointer<PyObject> closure,
)

Implementation

ffi.Pointer<PyObject> PyEval_EvalCodeEx(
  ffi.Pointer<PyObject> co,
  ffi.Pointer<PyObject> globals,
  ffi.Pointer<PyObject> locals,
  ffi.Pointer<ffi.Pointer<PyObject>> args,
  int argc,
  ffi.Pointer<ffi.Pointer<PyObject>> kwds,
  int kwdc,
  ffi.Pointer<ffi.Pointer<PyObject>> defs,
  int defc,
  ffi.Pointer<PyObject> kwdefs,
  ffi.Pointer<PyObject> closure,
) {
  return _PyEval_EvalCodeEx(
    co,
    globals,
    locals,
    args,
    argc,
    kwds,
    kwdc,
    defs,
    defc,
    kwdefs,
    closure,
  );
}