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?

link|improve this question

75% accept rate
Usually when you get the error code 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:18
1  
ERROR_SUCCESS means "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
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.