(self)
| 6604 | |
| 6605 | |
| 6606 | def transitions(self): |
| 6607 | for (_, prev_ti), (t, ti) in pairs(zip(self.ut, self.ti)): |
| 6608 | shift = ti[0] - prev_ti[0] |
| 6609 | yield (EPOCH_NAIVE + timedelta(seconds=t)), shift |
| 6610 | |
| 6611 | def nondst_folds(self): |
| 6612 | """Find all folds with the same value of isdst on both sides of the transition.""" |