| 4409 | |
| 4410 | def test_utc_offset_out_of_bounds(self): |
| 4411 | class Edgy(tzinfo): |
| 4412 | def __init__(self, offset): |
| 4413 | self.offset = timedelta(minutes=offset) |
| 4414 | def utcoffset(self, dt): |
| 4415 | return self.offset |
| 4416 | |
| 4417 | cls = self.theclass |
| 4418 | for offset, legit in ((-1440, False), |
no outgoing calls
searching dependent graphs…