diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-10-13 12:16:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-13 12:16:31 (GMT) |
commit | 7f580970836b0f6bc9c5db868d95bea81a3e1558 (patch) | |
tree | f4e4eb4079870015865188ee3669a1d1905fb80d /Modules | |
parent | b22273ec5d1992b0cbe078b887427ae9977dfb78 (diff) | |
download | cpython-7f580970836b0f6bc9c5db868d95bea81a3e1558.zip cpython-7f580970836b0f6bc9c5db868d95bea81a3e1558.tar.gz cpython-7f580970836b0f6bc9c5db868d95bea81a3e1558.tar.bz2 |
bpo-28647: Update -u documentation after bpo-30404 (GH-3961)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Modules/main.c b/Modules/main.c index 3e347dc..e862113 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -71,9 +71,8 @@ static const char usage_2[] = "\ -S : don't imply 'import site' on initialization\n\ "; static const char usage_3[] = "\ --u : unbuffered binary stdout and stderr, stdin always buffered;\n\ - also PYTHONUNBUFFERED=x\n\ - see man page for details on internal buffering relating to '-u'\n\ +-u : force the stdout and stderr streams to be unbuffered;\n\ + this option has no effect on stdin; also PYTHONUNBUFFERED=x\n\ -v : verbose (trace import statements); also PYTHONVERBOSE=x\n\ can be supplied multiple times to increase verbosity\n\ -V : print the Python version number and exit (also --version)\n\ |