(self)
| 51 | self._proceeding_from = self._beginning |
| 52 | |
| 53 | def expect_frozen(self): |
| 54 | if not self.is_frozen: |
| 55 | raise Exception("Timeline can only be inspected while frozen.") |
| 56 | |
| 57 | def __iter__(self): |
| 58 | self.expect_frozen() |
no outgoing calls
no test coverage detected