How can I create an unbuffered I/O multiplexer in Python?
I want a console python script that will receive input on std开发者_JS百科in and immediately write it out to stdout and stderr simultaneously. This should be unbuffered both on input and output.
How would I do this? I assume it's pretty basic, once you know the trick.
look at this
Disable output buffering
精彩评论