Re: subprocess & shared environments

2009-05-04 Thread Gabriel Genellina
En Mon, 04 May 2009 23:25:42 -0300, Robert Dailey escribió: Thanks for your help guys. Unfortunately both ideas will not work. I guess I should have mentioned that the batch file in question is vsvars32.bat, from the Visual Studio installation directory. I should not modify this file, nor can

Re: subprocess & shared environments

2009-05-04 Thread Robert Dailey
On May 1, 4:18 pm, Aaron Brady wrote: > On May 1, 12:09 am, Robert Dailey wrote: > > > I'm currently calling subprocess.call() on a batch file (in Windows) > > that sets a few environment variables that are needed by further > > processes started via subprocess.call(). How can I persist the > > e

subprocess & shared environments

2009-05-01 Thread Robert Dailey
I'm currently calling subprocess.call() on a batch file (in Windows) that sets a few environment variables that are needed by further processes started via subprocess.call(). How can I persist the environment modifications by the first call() function? I've done my own searching on this and I came

Re: subprocess & shared environments

2009-05-01 Thread Aaron Brady
On May 1, 12:09 am, Robert Dailey wrote: > I'm currently calling subprocess.call() on a batch file (in Windows) > that sets a few environment variables that are needed by further > processes started via subprocess.call(). How can I persist the > environment modifications by the first call() functi

Re: subprocess & shared environments

2009-05-01 Thread Piet van Oostrum
> Robert Dailey (RD) wrote: >RD> I'm currently calling subprocess.call() on a batch file (in Windows) >RD> that sets a few environment variables that are needed by further >RD> processes started via subprocess.call(). How can I persist the >RD> environment modifications by the first call() fu