标签: python ncurses
在python中执行此操作时:
tp = curses.textpad.Textbox(stdscr, insert_mode=True) text = tp.edit()
我得到了
RuntimeError: maximum recursion depth exceeded while calling a Python object
您能告诉我如何在curses.textpad中启用插入模式吗?提前谢谢。
答案 0 :(得分:1)
http://bugs.python.org/issue13051中的补丁解决了这个问题。感谢Narendra Sisodiya:)