PyCodec_EncodeText method Null safety

Pointer<PyObject> PyCodec_EncodeText (
  1. Pointer<PyObject> object,
  2. Pointer<Int8> encoding,
  3. Pointer<Int8> errors
)

Implementation

ffi.Pointer<PyObject> PyCodec_EncodeText(
  ffi.Pointer<PyObject> object,
  ffi.Pointer<ffi.Int8> encoding,
  ffi.Pointer<ffi.Int8> errors,
) {
  return _PyCodec_EncodeText(
    object,
    encoding,
    errors,
  );
}