PyBytes_FormatEx method Null safety

Pointer<PyObject> PyBytes_FormatEx (
  1. Pointer<Int8> format,
  2. int format_len,
  3. Pointer<PyObject> args,
  4. int use_bytearray
)

Implementation

ffi.Pointer<PyObject> PyBytes_FormatEx(
  ffi.Pointer<ffi.Int8> format,
  int format_len,
  ffi.Pointer<PyObject> args,
  int use_bytearray,
) {
  return _PyBytes_FormatEx(
    format,
    format_len,
    args,
    use_bytearray,
  );
}