Re: subprocess module under python 2.7

2010-07-27 Thread Chris Rebert
On Tue, Jul 27, 2010 at 4:12 PM, Timothy W. Grove wrote: > I am using the following code to hide the console window when launching a > subprocess under Windows. > >       startupinfo = subprocess.STARTUPINFO() >       startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW >       startupinfo.wShow

subprocess module under python 2.7

2010-07-27 Thread Timothy W. Grove
I am using the following code to hide the console window when launching a subprocess under Windows. startupinfo = subprocess.STARTUPINFO() startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW startupinfo.wShowWindow = subprocess.SW_HIDE self.mplayer = Popen(args,