py_compile method
Compile a source string into a code object.
Use python's exec()
or eval()
to execute it.
Implementation
bool py_compile(
ffi.Pointer<ffi.Char> source,
ffi.Pointer<ffi.Char> filename,
int mode,
bool is_dynamic,
) {
return _py_compile(
source,
filename,
mode,
is_dynamic,
);
}