Re: sending ctrl C to a process

2006-03-28 Thread Grant Edwards
On 2006-03-29, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > hi > thanks for the reply. Please properly quote the article to which you're replying so that we can tell who/what your talking to/about. > Actually, i should clarify what i am doing. the program's > output will be displayed to a web b

Re: sending ctrl C to a process

2006-03-28 Thread s99999999s2003
hi thanks for the reply.Actually, i should clarify what i am doing. the program's output will be displayed to a web browser using cgi, so there is no keyboard interrupt. The backend cgi script (python script) will have to send Ctrl-C to break the program. thanks -- http://mail.python.org/mailman

Re: sending ctrl C to a process

2006-03-28 Thread Felipe Almeida Lessa
Em Ter, 2006-03-28 às 18:14 -0800, [EMAIL PROTECTED] escreveu: > It will need a Ctrl-C in order to break out of the program. > I wish to run this program using python (either thru os.system() or > some other subprocess modules) and how can i pass Ctrl-C to this > program to terminate it in python?