ill see that the same problem persists with:
win32pipe.popen2()
win32pipe.popen3()
win32pipe.popen4()
while win32pipe.popen() does almost what you want.
>>>import win32pipe
>>>win32pipe.popen('cmd')
>>>r=win32pipe.popen('cmd')
>>&g
Jakob Simon-Gaarde wrote:
> Follow-up on a thread from 1999 (see below)
>
> Well now it is 2005 and the operating system I'm using is Windows
> Server 2003, and I can still see that the same problem persists with:
>
> win32pipe.popen2()
> win32pipe.popen3()
>
Me again.
I forgot to mention that readline() in popen2,3 and 4 even locks up the
parent-proces though it is called from a thread, so it's a real
deadlock.
--
http://mail.python.org/mailman/listinfo/python-list
Follow-up on a thread from 1999 (see below)
Well now it is 2005 and the operating system I'm using is Windows
Server 2003, and I can still see that the same problem persists with:
win32pipe.popen2()
win32pipe.popen3()
win32pipe.popen4()
while win32pipe.popen() does almost what you