| 4591 | |
| 4592 | # In time w/ identical tzinfo objects, utcoffset is ignored. |
| 4593 | class Varies(tzinfo): |
| 4594 | def __init__(self): |
| 4595 | self.offset = timedelta(minutes=22) |
| 4596 | def utcoffset(self, t): |
| 4597 | self.offset += timedelta(minutes=1) |
| 4598 | return self.offset |
| 4599 | |
| 4600 | v = Varies() |
| 4601 | t1 = t2.replace(tzinfo=v) |
no outgoing calls