PyTime_FromSeconds method

int PyTime_FromSeconds(
  1. int seconds
)

Implementation

int PyTime_FromSeconds(
  int seconds,
) {
  return _PyTime_FromSeconds(
    seconds,
  );
}