(self)
| 290 | |
| 291 | @contextmanager |
| 292 | def suspend(self) -> SimpleContextManager: |
| 293 | with super().suspend(), self.suspend_history(): |
| 294 | yield |
| 295 | |
| 296 | @contextmanager |
| 297 | def suspend_history(self) -> SimpleContextManager: |
nothing calls this directly
no test coverage detected