PyRun_FileFlags method

Pointer<PyObject> PyRun_FileFlags(
  1. Pointer<FILE> fp,
  2. Pointer<Char> p,
  3. int s,
  4. Pointer<PyObject> g,
  5. Pointer<PyObject> l,
  6. Pointer<PyCompilerFlags> flags,
)

Implementation

ffi.Pointer<PyObject> PyRun_FileFlags(
  ffi.Pointer<FILE> fp,
  ffi.Pointer<ffi.Char> p,
  int s,
  ffi.Pointer<PyObject> g,
  ffi.Pointer<PyObject> l,
  ffi.Pointer<PyCompilerFlags> flags,
) {
  return _PyRun_FileFlags(
    fp,
    p,
    s,
    g,
    l,
    flags,
  );
}