PyUnicode_Translate method Null safety
Implementation
ffi.Pointer<PyObject> PyUnicode_Translate(
ffi.Pointer<PyObject> str,
ffi.Pointer<PyObject> table,
ffi.Pointer<ffi.Int8> errors,
) {
return _PyUnicode_Translate(
str,
table,
errors,
);
}