[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Re: os.fork() not working on windows (help

Ian Clark

2/25/2008 6:36:00 PM

On 2008-02-25, A. Joseph <joefazee@gmail.com> wrote:
> Please i`m trying to create a process using the os.fork() but it keep

If you're not trying to clone your current process, just make a new one,
you should look at the subprocess module.

http://docs.python.org/lib/module-subpr...

Ian