Commit 0689ce43 authored by R David Murray's avatar R David Murray

#15543: reflow paragraph.

parent 99d439af
...@@ -288,15 +288,15 @@ default values. The arguments that are most commonly needed are: ...@@ -288,15 +288,15 @@ default values. The arguments that are most commonly needed are:
.. index:: .. index::
single: universal newlines; subprocess module single: universal newlines; subprocess module
If *universal_newlines* is ``True``, the file objects *stdin*, *stdout* If *universal_newlines* is ``True``, the file objects *stdin*, *stdout* and
and *stderr* will be opened as text streams in :term:`universal newlines` *stderr* will be opened as text streams in :term:`universal newlines` mode
mode using the encoding returned by using the encoding returned by :func:`locale.getpreferredencoding(False)
:func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`. <locale.getpreferredencoding>`. For *stdin*, line ending characters
For *stdin*, line ending characters ``'\n'`` in the input will be converted ``'\n'`` in the input will be converted to the default line separator
to the default line separator :data:`os.linesep`. For *stdout* and :data:`os.linesep`. For *stdout* and *stderr*, all line endings in the
*stderr*, all line endings in the output will be converted to ``'\n'``. output will be converted to ``'\n'``. For more information see the
For more information see the documentation of the :class:`io.TextIOWrapper` documentation of the :class:`io.TextIOWrapper` class when the *newline*
class when the *newline* argument to its constructor is ``None``. argument to its constructor is ``None``.
.. note:: .. note::
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment