(self)
| 692 | self._redraw_time = now |
| 693 | |
| 694 | def _get_current_line(self): |
| 695 | if self.edit is None: |
| 696 | return "" |
| 697 | return self.edit.get_edit_text() |
| 698 | |
| 699 | def _set_current_line(self, line): |
| 700 | self.edit.set_edit_text(line) |
nothing calls this directly
no outgoing calls
no test coverage detected