[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

Christian Heimes

2/25/2008 3:08:00 PM

A. Joseph wrote:
> Please i`m trying to create a process using the os.fork() but it keep
> generating error that the os module has no attribute called 'fork()'. what
> should i do?
>
> or is the os.fork() method not for windows?

Windows doesn't have a fork() syscall. It's only available on UNIX.

Christian