Lines Matching defs:_end_of_line
56 def _end_of_line(self, y):
111 self.win.move(y-1, self._end_of_line(y-1))
120 self.win.move(y, self._end_of_line(y))
138 if x == 0 and self._end_of_line(y) == 0:
141 # first undo the effect of self._end_of_line
149 if x > self._end_of_line(y+1):
150 self.win.move(y+1, self._end_of_line(y+1))
156 if x > self._end_of_line(y-1):
157 self.win.move(y-1, self._end_of_line(y-1))
166 stop = self._end_of_line(y)