(y, m, d, hh, mm, ss, dstflag)
| 159 | |
| 160 | |
| 161 | def _build_struct_time(y, m, d, hh, mm, ss, dstflag): |
| 162 | wday = (_ymd2ord(y, m, d) + 6) % 7 |
| 163 | dnum = _days_before_month(y, m) + d |
| 164 | return _time.struct_time((y, m, d, hh, mm, ss, wday, dnum, dstflag)) |
| 165 | |
| 166 | def _format_time(hh, mm, ss, us, timespec='auto'): |
| 167 | specs = { |
no test coverage detected
searching dependent graphs…