PyLong_AsLong method

int PyLong_AsLong(
  1. Pointer<PyObject> arg0
)

Implementation

int PyLong_AsLong(
  ffi.Pointer<PyObject> arg0,
) {
  return _PyLong_AsLong(
    arg0,
  );
}