(tz)
| 543 | return hour, minute, second, microsecond, fold |
| 544 | |
| 545 | def _check_tzinfo_arg(tz): |
| 546 | if tz is not None and not isinstance(tz, tzinfo): |
| 547 | raise TypeError("tzinfo argument must be None or of a tzinfo subclass") |
| 548 | |
| 549 | def _cmperror(x, y): |
| 550 | raise TypeError("can't compare '%s' to '%s'" % ( |
no outgoing calls
no test coverage detected