(self)
| 406 | p = len(s) |
| 407 | |
| 408 | def finish(self) -> None: |
| 409 | super().finish() |
| 410 | ret = self.get_unicode() |
| 411 | for i, t in self.transient_history.items(): |
| 412 | if i < len(self.history) and i != self.historyi: |
| 413 | self.history[i] = t |
| 414 | if ret and should_auto_add_history: |
| 415 | self.history.append(ret) |
| 416 | |
| 417 | |
| 418 | should_auto_add_history = True |
nothing calls this directly
no test coverage detected