PyCodecInfo_GetIncrementalDecoder method

Pointer<PyObject> PyCodecInfo_GetIncrementalDecoder(
  1. Pointer<PyObject> codec_info,
  2. Pointer<Char> errors
)

Implementation

ffi.Pointer<PyObject> PyCodecInfo_GetIncrementalDecoder(
  ffi.Pointer<PyObject> codec_info,
  ffi.Pointer<ffi.Char> errors,
) {
  return _PyCodecInfo_GetIncrementalDecoder(
    codec_info,
    errors,
  );
}