我有多线程的Python程序。主线程响应用户的命令:
while 1:
try:
cmd = raw_input(">> ")
if cmd == "exit":
break
# other commands
except KeyboardInterrupt:
break
# other stuffs
问题:如何从其他子线程中断while循环?
sys.exit()
不是一个选项,因为while循环之外还有其他代码。
我想到的可能的解决方案:
sys.stdin
解决方案1:我尝试了thread.interrupt_main()
,但它没有用。
解决方案2:调用sys.stdin.write()
将无效,以下代码:
f = open(sys.stdin.name, "w")
f.write("exit")
f.close()
Another similar question提供了一个答案,建议您生成另一个进程并使用subprocess.Popen.communicate()
向其发送命令。但是不可能对当前流程本身进行communicate()
吗?