:param ut: array Array of transition point timestamps :param ti: list A list of (offset, isdst, abbr) tuples :return: None
(self, ut, ti)
| 6603 | class ZoneInfo(tzinfo): |
| 6604 | zoneroot = '/usr/share/zoneinfo' |
| 6605 | def __init__(self, ut, ti): |
| 6606 | """ |
| 6607 | |
| 6608 | :param ut: array |
| 6609 | Array of transition point timestamps |
| 6610 | :param ti: list |
| 6611 | A list of (offset, isdst, abbr) tuples |
| 6612 | :return: None |
| 6613 | """ |
| 6614 | self.ut = ut |
| 6615 | self.ti = ti |
| 6616 | self.lt = self.invert(ut, ti) |
| 6617 | |
| 6618 | @staticmethod |
| 6619 | def invert(ut, ti): |