def _goto_top(self): ansi.restore_position() ansi.up(self.height)
def _goto_top(self): self.parent._goto_top() ansi.up(1)
def _clear_menu(self): self.parent._clear_menu() ansi.up() ansi.clear_eol()
def _clear_menu(self): ansi.restore_position() for i in xrange(self.height): ansi.clear_eol() ansi.up() ansi.clear_eol()