PyRun_AnyFile method

int PyRun_AnyFile(
  1. Pointer<FILE> fp,
  2. Pointer<Char> name
)

Implementation

int PyRun_AnyFile(
  ffi.Pointer<FILE> fp,
  ffi.Pointer<ffi.Char> name,
) {
  return _PyRun_AnyFile(
    fp,
    name,
  );
}