Mike Tammerman wrote: > I am trying to execute an executable or a pyton script inside my > program. I looked at the subprocess and os module. But all the > functions in these modules blocks my application. What I want to do is > run the subprocess without any concern. I don't care of its return type > or child signals. Just start and let it run independantly.
If you don't need any output, os.system('app') should do. -- http://mail.python.org/mailman/listinfo/python-list