(tzname, gmtoff, gmtoff_fraction)
| 809 | return cls(*args) |
| 810 | |
| 811 | def _parse_tz(tzname, gmtoff, gmtoff_fraction): |
| 812 | tzdelta = datetime_timedelta(seconds=gmtoff, microseconds=gmtoff_fraction) |
| 813 | if tzname: |
| 814 | return datetime_timezone(tzdelta, tzname) |
| 815 | else: |
| 816 | return datetime_timezone(tzdelta) |
| 817 | |
| 818 | def _strptime_datetime_time(cls, data_string, format="%H:%M:%S"): |
| 819 | """Return a time instance based on the input string and the |
no outgoing calls
no test coverage detected
searching dependent graphs…