PyBytes_FromFormat method Null safety

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

Implementation

ffi.Pointer<PyObject> PyBytes_FromFormat(
  ffi.Pointer<ffi.Int8> arg0,
) {
  return _PyBytes_FromFormat(
    arg0,
  );
}