summaryrefslogtreecommitdiff
path: root/docs/manual/wcur2.py
blob: 122541993c38ee66781f521d374239b6e13372be (plain)
1
2
3
4
5
6
7
    def get_pref_col(self, (maxcol,)):
        return self.cursor_x

    def move_cursor_to_coords(self, (maxcol,), col, row):
        assert row == 0
        self.cursor_x = col
        return True