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