--- Simon Pickles <[EMAIL PROTECTED]> escribió:

> os.spawnl(os.P_NOWAIT, sys.executable,
> sys.executable, "gateway.py")
>... works but both process output to the same
> interpreter window. Is there a way to run another
> interpreter window containing gateway.py?

Use the subprocess module, passing CREATE_NEW_CONSOLE into creationflags:

subprocess.call([sys.executable, "gateway.py", "other", "arguments"],
                 creationflags = subprocess.CREATE_NEW_CONSOLE)

-- 
Gabriel Genellina

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to