(self, i: int)
| 282 | self.last_refresh_cache.invalidated = True |
| 283 | |
| 284 | def get_item(self, i: int) -> str: |
| 285 | if i != len(self.history): |
| 286 | return self.transient_history.get(i, self.history[i]) |
| 287 | else: |
| 288 | return self.transient_history.get(i, self.get_unicode()) |
| 289 | |
| 290 | @contextmanager |
| 291 | def suspend(self) -> SimpleContextManager: |
no test coverage detected