Re: [python-win32] polling with os.popen3

2007-07-08 Thread TK Soh
On 6/30/07, Tim Roberts <[EMAIL PROTECTED]> wrote: > TK Soh wrote: > > On 6/29/07, Tim Roberts <[EMAIL PROTECTED]> wrote: > >> TK Soh wrote: > >> > I'm trying to use os.popen3 to replace subprocess.Popen for python 2.3 > >> > compatibility. According to the document, os.Popen3 class is not > >> > s

Re: [python-win32] polling with os.popen3

2007-06-29 Thread Tim Roberts
TK Soh wrote: > On 6/29/07, Tim Roberts <[EMAIL PROTECTED]> wrote: >> TK Soh wrote: >> > I'm trying to use os.popen3 to replace subprocess.Popen for python 2.3 >> > compatibility. According to the document, os.Popen3 class is not >> > supported on Win32, so I can't poll() the pipe. I wonder how I c

Re: [python-win32] polling with os.popen3

2007-06-29 Thread TK Soh
On 6/29/07, Tim Roberts <[EMAIL PROTECTED]> wrote: > TK Soh wrote: > > I'm trying to use os.popen3 to replace subprocess.Popen for python 2.3 > > compatibility. According to the document, os.Popen3 class is not > > supported on Win32, so I can't poll() the pipe. I wonder how I can > > check if the

Re: [python-win32] polling with os.popen3

2007-06-28 Thread Tim Roberts
TK Soh wrote: > I'm trying to use os.popen3 to replace subprocess.Popen for python 2.3 > compatibility. According to the document, os.Popen3 class is not > supported on Win32, so I can't poll() the pipe. I wonder how I can > check if the process open by os.popen3 is still running. Thanks in > advan

[python-win32] polling with os.popen3

2007-06-28 Thread TK Soh
I'm trying to use os.popen3 to replace subprocess.Popen for python 2.3 compatibility. According to the document, os.Popen3 class is not supported on Win32, so I can't poll() the pipe. I wonder how I can check if the process open by os.popen3 is still running. Thanks in advance for any advice or poi