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