def init_curses(cls, stdscr):
# An attempt to limit the damage from this bug in curses:
# https://bugs.python.org/issue13051
# The input textbox is 8 rows high. So assuming a maximum terminal
# width of 512 columns, we arrive at 8x512=4096. Most terminal windows
# should be smaller than this.
sys.setrecursionlimit(4096)
cls.stdscr = stdscr
curses.use_default_colors()
cls._init_color_pairs()
curses.curs_set(1)
评论列表
文章目录