Client/Server Question

diffuser78 at gmail.com diffuser78 at gmail.com
Thu Aug 10 15:59:08 EDT 2006


I apologize.

subprocess did work for me like a charm I made a mistake in my code.
Appreciate your help.

Dennis Benzinger wrote:
> os.system() blocks until the called program has finished. Use the
> subprocess module <http://docs.python.org/lib/module-subprocess.html>:
>
> <untested_code>
>
> import subprocess
> 
> subprocess.Popen("notepad")
> 
> </untested_code>
> 
> 
> Dennis




More information about the Python-list mailing list