PyLong_FromDouble method

Pointer<PyObject> PyLong_FromDouble(
  1. double arg0
)

Implementation

ffi.Pointer<PyObject> PyLong_FromDouble(
  double arg0,
) {
  return _PyLong_FromDouble(
    arg0,
  );
}