py_compilefile method

bool py_compilefile(
  1. Pointer<Char> src_path,
  2. Pointer<Char> dst_path
)

Compile a .py file into a .pyc file.

Implementation

bool py_compilefile(
  ffi.Pointer<ffi.Char> src_path,
  ffi.Pointer<ffi.Char> dst_path,
) {
  return _py_compilefile(
    src_path,
    dst_path,
  );
}