PyAST_CompileEx method

Pointer<PyCodeObject> PyAST_CompileEx(
  1. Pointer<_mod> mod,
  2. Pointer<Char> filename,
  3. Pointer<PyCompilerFlags> flags,
  4. int optimize,
  5. Pointer<PyArena> arena,
)

Implementation

ffi.Pointer<PyCodeObject> PyAST_CompileEx(
  ffi.Pointer<_mod> mod,
  ffi.Pointer<ffi.Char> filename,
  ffi.Pointer<PyCompilerFlags> flags,
  int optimize,
  ffi.Pointer<PyArena> arena,
) {
  return _PyAST_CompileEx(
    mod,
    filename,
    flags,
    optimize,
    arena,
  );
}