PyLong_GCD method

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

Implementation

ffi.Pointer<PyObject> PyLong_GCD(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
) {
  return _PyLong_GCD(
    arg0,
    arg1,
  );
}