Since it's in IronPython, I assume it's running on Windows, so process management might be different from what I know from unix.
From the look of you code, what you want to do is: "read the standard output of the process, kill it if runs too long". To do this properly, you need either non-blocking reads on standard output, a temporary file to read the output of the process from, or two threads of execution.
One thread will read the subprocess output.
The other thread will periodically poll the process to check if it terminated, and if it did not terminate after a time, kill it. If you do not want to poll, you need one additional thread: one to wait() on the subprocess, the other to kill it after a time.
Relevant standard library modules:
- subprocess: use this instead of
popen, it's just better in every respect.
- sched: a basic scheduler to implement periodic polling and killing in a single thread.
- threading: high-level threading library. In particular threading.Timer is essential to build the poll-free solution.