PyLong_DivmodNear method

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

Implementation

ffi.Pointer<PyObject> PyLong_DivmodNear(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
) {
  return _PyLong_DivmodNear(
    arg0,
    arg1,
  );
}