PyUnicode_AsDecodedUnicode method Null safety
Implementation
ffi.Pointer<PyObject> PyUnicode_AsDecodedUnicode(
ffi.Pointer<PyObject> unicode,
ffi.Pointer<ffi.Int8> encoding,
ffi.Pointer<ffi.Int8> errors,
) {
return _PyUnicode_AsDecodedUnicode(
unicode,
encoding,
errors,
);
}