summaryrefslogtreecommitdiffstats
path: root/Doc/using
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-12-21 10:24:47 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-12-21 10:24:47 (GMT)
commitd5ec134d82dc56cafdadbae2e03f054076a27dd5 (patch)
treecf3580df2f5f719b3695fb1462aae55f42414809 /Doc/using
parentde911b2915476938c66855d91df6fa4bbd77b39f (diff)
parent08c08eb93cc0b67215d1922adc55f3ebf40b5122 (diff)
downloadcpython-d5ec134d82dc56cafdadbae2e03f054076a27dd5.zip
cpython-d5ec134d82dc56cafdadbae2e03f054076a27dd5.tar.gz
cpython-d5ec134d82dc56cafdadbae2e03f054076a27dd5.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.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
index bc38542..d9cf954 100644
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -249,7 +249,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`.