Re: Don't want child process inheriting open sockets

2008-01-22 Thread Gabriel Genellina
En Tue, 22 Jan 2008 13:02:35 -0200, Steven Watanabe <[EMAIL PROTECTED]> escribió: > I'm using subprocess.Popen() to create a child process. The child > process is inheriting the parent process' open sockets, but I don't want > that. I believe that on Unix systems I could use the FD_CLOEXEC f

Don't want child process inheriting open sockets

2008-01-22 Thread Steven Watanabe
I'm using subprocess.Popen() to create a child process. The child process is inheriting the parent process' open sockets, but I don't want that. I believe that on Unix systems I could use the FD_CLOEXEC flag, but I'm running Windows. Any suggestions? -- http://mail.python.org/mailman/listinfo/p