diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-12-21 10:24:15 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-12-21 10:24:15 (GMT) |
commit | 08c08eb93cc0b67215d1922adc55f3ebf40b5122 (patch) | |
tree | 6b9e2751604f62cea1069451c9de9dd756361784 /Doc/using | |
parent | 86a8a9ae983b66ea218ccbb57d3e3a5cdf918e97 (diff) | |
download | cpython-08c08eb93cc0b67215d1922adc55f3ebf40b5122.zip cpython-08c08eb93cc0b67215d1922adc55f3ebf40b5122.tar.gz cpython-08c08eb93cc0b67215d1922adc55f3ebf40b5122.tar.bz2 |
Issue #13597: Fix the documentation of the "-u" command-line option, and wording of "What's new in Python 3.0" about standard streams.
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index c73f1e0..9274d8e 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -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`. |