summaryrefslogtreecommitdiffstats
path: root/Misc/python.man
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-10-13 12:16:31 (GMT)
committerGitHub <noreply@github.com>2017-10-13 12:16:31 (GMT)
commit7f580970836b0f6bc9c5db868d95bea81a3e1558 (patch)
treef4e4eb4079870015865188ee3669a1d1905fb80d /Misc/python.man
parentb22273ec5d1992b0cbe078b887427ae9977dfb78 (diff)
downloadcpython-7f580970836b0f6bc9c5db868d95bea81a3e1558.zip
cpython-7f580970836b0f6bc9c5db868d95bea81a3e1558.tar.gz
cpython-7f580970836b0f6bc9c5db868d95bea81a3e1558.tar.bz2
bpo-28647: Update -u documentation after bpo-30404 (GH-3961)
Diffstat (limited to 'Misc/python.man')
-rw-r--r--Misc/python.man9
1 files changed, 2 insertions, 7 deletions
diff --git a/Misc/python.man b/Misc/python.man
index 075b974..9f71d69 100644
--- a/Misc/python.man
+++ b/Misc/python.man
@@ -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