(self)
| 294 | |
| 295 | @contextmanager |
| 296 | def suspend_history(self) -> SimpleContextManager: |
| 297 | try: |
| 298 | old_history = self.history[:] |
| 299 | del self.history[:] |
| 300 | yield |
| 301 | finally: |
| 302 | self.history[:] = old_history |
| 303 | |
| 304 | def prepare(self) -> None: |
| 305 | super().prepare() |
no outgoing calls
no test coverage detected