summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-08-15 15:13:31 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-08-15 15:13:31 (GMT)
commit0689ce4396dc11b593755fab715f1b04ef8d87e5 (patch)
tree84f2ea8eb7d2220cbc7a05eeb5df364da1dd95ea
parent99d439afcfa67b9f6738ca021edc8f6b382776bc (diff)
downloadcpython-0689ce4396dc11b593755fab715f1b04ef8d87e5.zip
cpython-0689ce4396dc11b593755fab715f1b04ef8d87e5.tar.gz
cpython-0689ce4396dc11b593755fab715f1b04ef8d87e5.tar.bz2
#15543: reflow paragraph.
-rw-r--r--Doc/library/subprocess.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 94a1ecb..c0fc4d7 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -288,15 +288,15 @@ default values. The arguments that are most commonly needed are:
.. index::
single: universal newlines; subprocess module
- If *universal_newlines* is ``True``, the file objects *stdin*, *stdout*
- and *stderr* will be opened as text streams in :term:`universal newlines`
- mode using the encoding returned by
- :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`.
- For *stdin*, line ending characters ``'\n'`` in the input will be converted
- to the default line separator :data:`os.linesep`. For *stdout* and
- *stderr*, all line endings in the output will be converted to ``'\n'``.
- For more information see the documentation of the :class:`io.TextIOWrapper`
- class when the *newline* argument to its constructor is ``None``.
+ If *universal_newlines* is ``True``, the file objects *stdin*, *stdout* and
+ *stderr* will be opened as text streams in :term:`universal newlines` mode
+ using the encoding returned by :func:`locale.getpreferredencoding(False)
+ <locale.getpreferredencoding>`. For *stdin*, line ending characters
+ ``'\n'`` in the input will be converted to the default line separator
+ :data:`os.linesep`. For *stdout* and *stderr*, all line endings in the
+ output will be converted to ``'\n'``. For more information see the
+ documentation of the :class:`io.TextIOWrapper` class when the *newline*
+ argument to its constructor is ``None``.
.. note::