PyUnicode_Translate method Null safety

Pointer<PyObject> PyUnicode_Translate (
  1. Pointer<PyObject> str,
  2. Pointer<PyObject> table,
  3. Pointer<Int8> errors
)

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,
  );
}