PyLong_Rshift method

Pointer<PyObject> PyLong_Rshift(
  1. Pointer<PyObject> arg0,
  2. int arg1
)

Implementation

ffi.Pointer<PyObject> PyLong_Rshift(
  ffi.Pointer<PyObject> arg0,
  int arg1,
) {
  return _PyLong_Rshift(
    arg0,
    arg1,
  );
}