PyLong_FromUnsignedLongLong method

Pointer<PyObject> PyLong_FromUnsignedLongLong(
  1. int arg0
)

Implementation

ffi.Pointer<PyObject> PyLong_FromUnsignedLongLong(
  int arg0,
) {
  return _PyLong_FromUnsignedLongLong(
    arg0,
  );
}