PyBytes_FromString method Null safety

Pointer<PyObject> PyBytes_FromString (
  1. Pointer<Int8> arg0
)

Implementation

ffi.Pointer<PyObject> PyBytes_FromString(
  ffi.Pointer<ffi.Int8> arg0,
) {
  return _PyBytes_FromString(
    arg0,
  );
}