我有两个python文件:
a.py:
import subprocess, time, os, signal
myprocess = subprocess.Popen("b.py", shell=True)
time.sleep(2)
os.kill(myprocess.pid, signal.SIGTERM)
b.py:
import atexit
def cleanup():
print "Cleaning up things before the program exits..."
atexit.register(cleanup)
print "Hello world!"
while True:
pass
a.py
正在产生b.py
,并且在2秒之后它正在杀死该进程。问题是我希望cleanup
函数在b.py
被调用之前被调用,但是我无法让它工作。
我还在SIGKILL
函数中尝试了SIGINT
和os.kill
,但对我来说都没有。
当前输出(a.py):
Hello, World!
(2 seconds later, program ends)
预期输出(a.py):
Hello, World!
(2 seconds later)
Cleaning up things before the program exits...
(program ends)
答案 0 :(得分:1)
为Windows平台使用不同的信号:signal.CTRL_C_EVENT
在a.py
中多放一些睡眠,否则子进程在父进程退出之前没有机会进行清理:
import subprocess, time, os, signal
myprocess = subprocess.Popen("b.py", shell=True)
time.sleep(2)
os.kill(myprocess.pid, signal.CTRL_C_EVENT)
time.sleep(2)
如果你真的不需要shell功能,我也想阻止你使用shell:
import subprocess, time, os, signal, sys
myprocess = subprocess.Popen([sys.executable, "b.py"])
Linux / macOS 用户:signal.CTRL_C_EVENT
不存在,您需要signal.SIGINT
。