bpo-28647: Update -u documentation after bpo-30404 (GH-3961)

This commit is contained in:
Berker Peksag 2017-10-13 15:16:31 +03:00 committed by GitHub
parent b22273ec5d
commit 7f58097083
4 changed files with 9 additions and 14 deletions

View file

@ -178,13 +178,8 @@ that it entails. Also disable these manipulations if
is explicitly imported later.
.TP
.B \-u
Force the binary I/O layers of stdout and stderr to be unbuffered.
stdin is always buffered.
The text I/O layer will still be line-buffered.
.\" Note that there is internal buffering in readlines() and
.\" file-object iterators ("for line in sys.stdin") which is not
.\" influenced by this option. To work around this, you will want to use
.\" "sys.stdin.readline()" inside a "while 1:" loop.
Force the stdout and stderr streams to be unbuffered.
This option has no effect on the stdin stream.
.TP
.B \-v
Print a message each time a module is initialized, showing the place