(tzname, gmtoff, gmtoff_fraction)
| 791 | return cls(*args) |
| 792 | |
| 793 | def _parse_tz(tzname, gmtoff, gmtoff_fraction): |
| 794 | tzdelta = datetime_timedelta(seconds=gmtoff, microseconds=gmtoff_fraction) |
| 795 | if tzname: |
| 796 | return datetime_timezone(tzdelta, tzname) |
| 797 | else: |
| 798 | return datetime_timezone(tzdelta) |
| 799 | |
| 800 | def _strptime_datetime_time(cls, data_string, format="%H:%M:%S"): |
| 801 | """Return a time instance based on the input string and the |
no outgoing calls
no test coverage detected