Convert a time string to a time tuple.
(data)
| 181 | |
| 182 | |
| 183 | def parsedate(data): |
| 184 | """Convert a time string to a time tuple.""" |
| 185 | t = parsedate_tz(data) |
| 186 | if isinstance(t, tuple): |
| 187 | return t[:9] |
| 188 | else: |
| 189 | return t |
| 190 | |
| 191 | |
| 192 | def mktime_tz(data): |
nothing calls this directly
no test coverage detected
searching dependent graphs…