On Thu, Dec 17, 2009 at 10:14 AM, pedro wrote:
> On 2009-12-17 09:52:34 -0500, Kent Johnson said:
>
>> call os.system() in a thread
>
> Hi Kent, pardon my ignorance but what do you mean by call os.system() in a
> thread?
Your basic problem is that os.system() blocks - it waits until the new
proc
On 2009-12-17 09:52:34 -0500, Kent Johnson said:
call os.system() in a thread
Hi Kent, pardon my ignorance but what do you mean by call os.system()
in a thread?
___
Tutor maillist - Tutor@python.org
To unsubscribe or change subscription optio
On Thu, Dec 17, 2009 at 9:29 AM, pedro wrote:
> Hi, I have two computationally intensive commands that I would like to
> render simultaneously on two fifferent computers. When I run these two
> commands,
>
> os.system(theTerminalCommandMacPro4)
> os.system(theTerminalCommandMacPro1)
>
>
> the seco
Hi, I have two computationally intensive commands that I would like to
render simultaneously on two fifferent computers. When I run these two
commands,
os.system(theTerminalCommandMacPro4)
os.system(theTerminalCommandMacPro1)
the second command doesn't begin until the first command has finish