summaryrefslogtreecommitdiff
path: root/Doc/library/sys.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-10-13 15:16:31 +0300
committerGitHub <noreply@github.com>2017-10-13 15:16:31 +0300
commit7f580970836b0f6bc9c5db868d95bea81a3e1558 (patch)
treef4e4eb4079870015865188ee3669a1d1905fb80d /Doc/library/sys.rst
parentb22273ec5d1992b0cbe078b887427ae9977dfb78 (diff)
downloadcpython-git-7f580970836b0f6bc9c5db868d95bea81a3e1558.tar.gz
bpo-28647: Update -u documentation after bpo-30404 (GH-3961)
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r--Doc/library/sys.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index aa7bd477b0..853e91b93d 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -1275,9 +1275,9 @@ always available.
Under all platforms though, you can override this value by setting the
:envvar:`PYTHONIOENCODING` environment variable before starting Python.
- * When interactive, standard streams are line-buffered. Otherwise, they
- are block-buffered like regular text files. You can override this
- value with the :option:`-u` command-line option.
+ * When interactive, ``stdout`` and ``stderr`` streams are line-buffered.
+ Otherwise, they are block-buffered like regular text files. You can
+ override this value with the :option:`-u` command-line option.
.. note::