(tz)
| 595 | return hour, minute, second, microsecond, fold |
| 596 | |
| 597 | def _check_tzinfo_arg(tz): |
| 598 | if tz is not None and not isinstance(tz, tzinfo): |
| 599 | raise TypeError( |
| 600 | "tzinfo argument must be None or of a tzinfo subclass, " |
| 601 | f"not {type(tz).__name__!r}" |
| 602 | ) |
| 603 | |
| 604 | def _divide_and_round(a, b): |
| 605 | """divide a by b and round result to the nearest integer |
no outgoing calls
no test coverage detected
searching dependent graphs…