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