PyObject_AsWriteBuffer method Null safety
Implementation
int PyObject_AsWriteBuffer(
ffi.Pointer<PyObject> obj,
ffi.Pointer<ffi.Pointer<ffi.Void>> buffer,
ffi.Pointer<ffi.Int64> buffer_len,
) {
return _PyObject_AsWriteBuffer(
obj,
buffer,
buffer_len,
);
}