(self)
| 55 | raise Exception("Timeline can only be inspected while frozen.") |
| 56 | |
| 57 | def __iter__(self): |
| 58 | self.expect_frozen() |
| 59 | return self._beginning.and_following() |
| 60 | |
| 61 | def __len__(self): |
| 62 | return len(self.history()) |
nothing calls this directly
no test coverage detected