PyRun_SimpleString method

int PyRun_SimpleString(
  1. Pointer<Char> s
)

Implementation

int PyRun_SimpleString(
  ffi.Pointer<ffi.Char> s,
) {
  return _PyRun_SimpleString(
    s,
  );
}