PyLong_FromTime_t method

Pointer<PyObject> PyLong_FromTime_t(
  1. int sec
)

Implementation

ffi.Pointer<PyObject> PyLong_FromTime_t(
  int sec,
) {
  return _PyLong_FromTime_t(
    sec,
  );
}