PyTime_FromMillisecondsObject method

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

Implementation

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