Re: [python-win32] Starting a process in unbuffered mode using Python 2.3

2007-06-13 Thread Tim Roberts
Tor Erik Sønvisen wrote: > I have this problem with piping stdin and stdout of a child process in > windows. The basic problem is that I'm unable to start the child > process in unbuffered mode. I've tried os.popen3 with bufsize=0, but > then I get en Exception saying that bufsize must be -1 (no si

[python-win32] Starting a process in unbuffered mode using Python 2.3

2007-06-13 Thread Tor Erik Sønvisen
Hi, I have this problem with piping stdin and stdout of a child process in windows. The basic problem is that I'm unable to start the child process in unbuffered mode. I've tried os.popen3 with bufsize=0, but then I get en Exception saying that bufsize must be -1 (no size restriction). If the chil