PyCodec_Lookup method

Pointer<PyObject> PyCodec_Lookup(
  1. Pointer<Char> encoding
)

Implementation

ffi.Pointer<PyObject> PyCodec_Lookup(
  ffi.Pointer<ffi.Char> encoding,
) {
  return _PyCodec_Lookup(
    encoding,
  );
}