Alternative to subprocess in order to not wait for calling commands to complete

2012-05-14 Thread ks
Hi All, >From within one Python program, I would like to invoke three other Python programs. Usually I would use the subprocess module to invoke these sequentially. I now have a use case in which I must invoke the first one (not wait for it to complete), then invoke the second (similarly not wait

Re: Alternative to subprocess in order to not wait for calling commands to complete

2012-05-14 Thread Adam Skutt
On May 10, 12:07 pm, ks wrote: > Hi All, > > From within one Python program, I would like to invoke three other > Python programs. Usually I would use the subprocess module to invoke > these sequentially. I now have a use case in which I must invoke the > first one (not wait for it to complete), t