PyRun_FileExFlags method

Pointer<PyObject> PyRun_FileExFlags(
  1. Pointer<FILE> fp,
  2. Pointer<Char> filename,
  3. int start,
  4. Pointer<PyObject> globals,
  5. Pointer<PyObject> locals,
  6. int closeit,
  7. Pointer<PyCompilerFlags> flags,
)

Implementation

ffi.Pointer<PyObject> PyRun_FileExFlags(
  ffi.Pointer<FILE> fp,
  ffi.Pointer<ffi.Char> filename,
  int start,
  ffi.Pointer<PyObject> globals,
  ffi.Pointer<PyObject> locals,
  int closeit,
  ffi.Pointer<PyCompilerFlags> flags,
) {
  return _PyRun_FileExFlags(
    fp,
    filename,
    start,
    globals,
    locals,
    closeit,
    flags,
  );
}