PyTime_FromNanosecondsObject method

int PyTime_FromNanosecondsObject(
  1. Pointer<_PyTime_t> t,
  2. Pointer<PyObject> obj
)

Implementation

int PyTime_FromNanosecondsObject(
  ffi.Pointer<_PyTime_t> t,
  ffi.Pointer<PyObject> obj,
) {
  return _PyTime_FromNanosecondsObject(
    t,
    obj,
  );
}