> import os
> import signal
> import subprocess
>
> popen = subprocess(...)
> os.kill(popen.pid, signal.SIGINT)
>
> Or with Python 2.6+:
>
> popen.send_signal(signal.SIGINT)

Thanks, Christian.  Would that work on win32 as well?

-T
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to