PyTime_FromSecondsObject method

int PyTime_FromSecondsObject(
  1. Pointer<_PyTime_t> t,
  2. Pointer<PyObject> obj,
  3. int round
)

Implementation

int PyTime_FromSecondsObject(
  ffi.Pointer<_PyTime_t> t,
  ffi.Pointer<PyObject> obj,
  int round,
) {
  return _PyTime_FromSecondsObject(
    t,
    obj,
    round,
  );
}