curses in python getstr() while refreshing

爱⌒轻易说出口 提交于 2019-12-01 07:03:04

I'm guessing you are using a thread to update the upper display while window.getstr() runs in the main thread?

If so, the problem is that the curses terminal state is a shared resource that can't be updated from two different threads simultaneously. You need to put the terminal into non-blocking mode, use window.getch() to build up an input string and have your thread pass the upper window update task to the main thread.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!