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