PyLong_FormatBytesWriter method Null safety

Pointer<Int8> PyLong_FormatBytesWriter (
  1. Pointer<_PyBytesWriter> writer,
  2. Pointer<Int8> str,
  3. Pointer<PyObject> obj,
  4. int base,
  5. int alternate
)

Implementation

ffi.Pointer<ffi.Int8> PyLong_FormatBytesWriter(
  ffi.Pointer<_PyBytesWriter> writer,
  ffi.Pointer<ffi.Int8> str,
  ffi.Pointer<PyObject> obj,
  int base,
  int alternate,
) {
  return _PyLong_FormatBytesWriter(
    writer,
    str,
    obj,
    base,
    alternate,
  );
}