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