Py_HashBytes method

int Py_HashBytes(
  1. Pointer<Void> arg0,
  2. int arg1
)

Implementation

int Py_HashBytes(
  ffi.Pointer<ffi.Void> arg0,
  int arg1,
) {
  return _Py_HashBytes(
    arg0,
    arg1,
  );
}