PyUnicode_AsDecodedObject method Null safety

Pointer<PyObject> PyUnicode_AsDecodedObject (
  1. Pointer<PyObject> unicode,
  2. Pointer<Int8> encoding,
  3. Pointer<Int8> errors
)

Implementation

ffi.Pointer<PyObject> PyUnicode_AsDecodedObject(
  ffi.Pointer<PyObject> unicode,
  ffi.Pointer<ffi.Int8> encoding,
  ffi.Pointer<ffi.Int8> errors,
) {
  return _PyUnicode_AsDecodedObject(
    unicode,
    encoding,
    errors,
  );
}