When I kick off a python script from within another python script using the subprocess module, a zombie process is created when the subprocess \"completes\". I am unable to
Like this: s = Popen(args) s.terminate() time.sleep(0.5) s.poll()
s = Popen(args)
s.terminate()
time.sleep(0.5)
s.poll()
it works zombie processes will disappear