(self, select = False)
| 293 | def move_cursor_up(self, select = False): |
| 294 | self.move_cursor("PREVIOUS_LINE", select) |
| 295 | def move_cursor_down(self, select = False): |
| 296 | self.move_cursor("NEXT_LINE", select) |
| 297 | |
| 298 | def move_cursor(self, type, select = False): |
| 299 | self.make_active() |
nothing calls this directly
no test coverage detected