PyUnicode_Translate method

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

Implementation

ffi.Pointer<PyObject> PyUnicode_Translate(
  ffi.Pointer<PyObject> str,
  ffi.Pointer<PyObject> table,
  ffi.Pointer<ffi.Char> errors,
) {
  return _PyUnicode_Translate(
    str,
    table,
    errors,
  );
}