| 162 | __slots__ = '_FixedOffset__offset', '_FixedOffset__name', 'spam' |
| 163 | |
| 164 | class _TZInfo(tzinfo): |
| 165 | def utcoffset(self, datetime_module): |
| 166 | return random.random() |
| 167 | |
| 168 | class TestTZInfo(unittest.TestCase): |
| 169 |
no outgoing calls
searching dependent graphs…