PyLong_New method

Pointer<PyLongObject> PyLong_New(
  1. int arg0
)

Implementation

ffi.Pointer<PyLongObject> PyLong_New(
  int arg0,
) {
  return _PyLong_New(
    arg0,
  );
}