On Fri, Apr 20, 2012 at 8:51 PM, Yigit Turgut <[email protected]> wrote: > On Apr 19, 11:02 pm, "Steve" <[email protected]> wrote: >> > "Yigit Turgut" wrote in message >> >news:[email protected]... >> > When I use os.system() function, script waits for termination of the >> >> windows that is opened by os.system() to continue thus throwing errors >> and etc. How can i tell Python to let it go and keep on with the next >> execution after os.system() ? >> >> Can you make use of subprocess.Popen() ? > > Still waits for the new windows to kill.
Check the docs for subprocess, you can choose whether or not you wait for it. ChrisA -- http://mail.python.org/mailman/listinfo/python-list
