Tagged Questions
43
votes
9answers
23k 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
...
3
votes
1answer
494 views
Is stdout line buffered, unbuffered or indeterminate by default?
Section 7.9.13/7 of c99 states that:
At program start-up, three text streams are predefined and need not be opened explicitly - standard input (for reading conventional input), standard output ...