Re: Control process execution

2008-04-09 Thread Noah
On Apr 9, 1:57 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > As far as I know, there is no "os.process". Maybe you meant os.system > or the subprocess module? > > Mike Yeah, I was thinking "subprocess" module. -- Noah -- http://mail.python.org/mailman/listinfo/python-list

Re: Control process execution

2008-04-09 Thread Mike Driscoll
On Apr 9, 3:11 pm, Noah <[EMAIL PROTECTED]> wrote: > On Apr 6, 5:30 am, Wesley Mesquita <[EMAIL PROTECTED]> wrote: > > > I am trying to create a test environment to a couple C applications > > (simple UDP and TCP server/clients), so I want to write this in python > > and I m looking for ways to do

Re: Control process execution

2008-04-09 Thread Noah
On Apr 6, 5:30 am, Wesley Mesquita <[EMAIL PROTECTED]> wrote: > I am trying to create a test environment to a couple C applications > (simple UDP and TCP server/clients), so I want to write this in python > and I m looking for ways to do it. Basically I need an execution timer > and timeout control

Control process execution

2008-04-06 Thread Wesley Mesquita
Hi all, I am trying to create a test environment to a couple C applications (simple UDP and TCP server/clients), so I want to write this in python and I m looking for ways to do it. Basically I need an execution timer and timeout control (to kill the apps in certain situations). Looking at google,