PyLong_AsLongAndOverflow method

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

Implementation

int PyLong_AsLongAndOverflow(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<ffi.Int> arg1,
) {
  return _PyLong_AsLongAndOverflow(
    arg0,
    arg1,
  );
}