Py_open method

int Py_open(
  1. Pointer<Char> pathname,
  2. int flags
)

Implementation

int Py_open(
  ffi.Pointer<ffi.Char> pathname,
  int flags,
) {
  return _Py_open(
    pathname,
    flags,
  );
}