(self)
| 49 | win.keypad(1) |
| 50 | |
| 51 | def _update_max_yx(self): |
| 52 | maxy, maxx = self.win.getmaxyx() |
| 53 | self.maxy = maxy - 1 |
| 54 | self.maxx = maxx - 1 |
| 55 | |
| 56 | def _end_of_line(self, y): |
| 57 | """Go to the location of the first blank on the given line, |
no outgoing calls
no test coverage detected