Home
last modified time | relevance | path

Searched refs:_end_of_line (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Lib/curses/
Dtextpad.py53 def _end_of_line(self, y): member in Textbox
99 self.win.move(y-1, self._end_of_line(y-1))
108 self.win.move(y, self._end_of_line(y))
126 if x == 0 and self._end_of_line(y) == 0:
137 if x > self._end_of_line(y+1):
138 self.win.move(y+1, self._end_of_line(y+1))
144 if x > self._end_of_line(y-1):
145 self.win.move(y-1, self._end_of_line(y-1))
153 stop = self._end_of_line(y)