I've written a python program which read a stdout of another process by the pipe redirection. However, the program sucks in this line:
print "[Input Thread] ", self.inputPipe.readline(ii)
The error is IOError: [Errno 0] Error
I found the explanation of windows errno 0. It makes confused because it defined as:
The operation completed successfully.
Why does an operation completed successfully lead to an error?
0, that typically indicates success (as in there was no problems). Apparently whatever you did there thought there was a problem and printed the "error message" when there really wasn't one. – Jeff Mercado Sep 23 '11 at 4:18ERROR_SUCCESSmeans "no error" in WinAPI. It is prefixed with ERROR_ to be in the same artificial "define namespace". I would pay more attention to the IOError bit, although I don't know what would cause it. – pst Sep 23 '11 at 4:49