(self)
| 6791 | |
| 6792 | |
| 6793 | def transitions(self): |
| 6794 | for (_, prev_ti), (t, ti) in pairs(zip(self.ut, self.ti)): |
| 6795 | shift = ti[0] - prev_ti[0] |
| 6796 | yield (EPOCH_NAIVE + timedelta(seconds=t)), shift |
| 6797 | |
| 6798 | def nondst_folds(self): |
| 6799 | """Find all folds with the same value of isdst on both sides of the transition.""" |