Tagged Questions

43
votes
9answers
24k views

Python output buffering

Is output buffering enabled by default in Python's interpreter for sys.stdout ? If the answer is positive, what are all the ways to disable it ? Suggestions so far: Use the -u command line switch ...