Issue #13597: Fix the documentation of the "-u" command-line option, and wording of "What's new in Python 3.0" about standard streams.

This commit is contained in:
Antoine Pitrou 2011-12-21 11:24:15 +01:00
parent 86a8a9ae98
commit 08c08eb93c
2 changed files with 9 additions and 4 deletions

View file

@ -247,7 +247,8 @@ Miscellaneous options
Force the binary layer of the stdin, stdout and stderr streams (which is
available as their ``buffer`` attribute) to be unbuffered. The text I/O
layer will still be line-buffered.
layer will still be line-buffered if writing to the console, or
block-buffered if redirected to a non-interactive file.
See also :envvar:`PYTHONUNBUFFERED`.