PyUnicode_Decode method

Pointer<PyObject> PyUnicode_Decode(
  1. Pointer<Char> s,
  2. int size,
  3. Pointer<Char> encoding,
  4. Pointer<Char> errors,
)

Implementation

ffi.Pointer<PyObject> PyUnicode_Decode(
  ffi.Pointer<ffi.Char> s,
  int size,
  ffi.Pointer<ffi.Char> encoding,
  ffi.Pointer<ffi.Char> errors,
) {
  return _PyUnicode_Decode(
    s,
    size,
    encoding,
    errors,
  );
}