PyUnicodeDecodeError_Create method Null safety

Pointer<PyObject> PyUnicodeDecodeError_Create (
  1. Pointer<Int8> encoding,
  2. Pointer<Int8> object,
  3. int length,
  4. int start,
  5. int end,
  6. Pointer<Int8> reason
)

Implementation

ffi.Pointer<PyObject> PyUnicodeDecodeError_Create(
  ffi.Pointer<ffi.Int8> encoding,
  ffi.Pointer<ffi.Int8> object,
  int length,
  int start,
  int end,
  ffi.Pointer<ffi.Int8> reason,
) {
  return _PyUnicodeDecodeError_Create(
    encoding,
    object,
    length,
    start,
    end,
    reason,
  );
}