(self)
| 182 | return self.history[cut:] |
| 183 | |
| 184 | def update_last_used_indentation(self) -> None: |
| 185 | indentation = _get_first_indentation(self.buffer) |
| 186 | if indentation is not None: |
| 187 | self.last_used_indentation = indentation |
| 188 | |
| 189 | # --- simplified support for reading multiline Python statements --- |
| 190 |
no test coverage detected