Re: popen and exit code on Windows

2006-03-07 Thread iker . arizmendi
Thanks for the reply Giovanni. Is this behaviour of the close method on Windows documented anywhere? Regards, Iker -- http://mail.python.org/mailman/listinfo/python-list

Re: popen and exit code on Windows

2006-03-07 Thread Giovanni Bajo
[EMAIL PROTECTED] wrote: > On UNIX one can use popen* to get a pipe for reading, a pipe for > writing, and the exit code of the child process via a call to close() > on the last pipe. Is there any way, in principle, to simulate such > behaviour on Windows? Some googling reveals that direct use of

popen and exit code on Windows

2006-03-06 Thread iker . arizmendi
On UNIX one can use popen* to get a pipe for reading, a pipe for writing, and the exit code of the child process via a call to close() on the last pipe. Is there any way, in principle, to simulate such behaviour on Windows? Some googling reveals that direct use of the popen* functions on Windows wi