标签: python windows python-2.7 subprocess
使用Popen启动子进程并稍后尝试使用terminate结束时,在子进程从Windows任务管理器中消失之前可能需要10秒钟。
Popen
terminate
p = subprocess.Popen('foo.exe') while True: ... if quitProcess: p.terminate()
问题:有没有更快的方法退出子流程,理想情况是在一秒钟内?