summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-04-15 02:12:14 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-04-15 02:12:14 (GMT)
commitef9ffcbcd442579e06b2c83f827f521d333ac1cc (patch)
treef62cb737b269a248e146008cfcba90d5105b0a19 /Doc/library/subprocess.rst
parent6e73000723640121ce7529ec91a01323bd7b76b5 (diff)
downloadcpython-ef9ffcbcd442579e06b2c83f827f521d333ac1cc.zip
cpython-ef9ffcbcd442579e06b2c83f827f521d333ac1cc.tar.gz
cpython-ef9ffcbcd442579e06b2c83f827f521d333ac1cc.tar.bz2
properly wrap
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r--Doc/library/subprocess.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 4fef6ea..9a2f4de 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -26,8 +26,8 @@ Using the :mod:`subprocess` Module
----------------------------------
The recommended approach to invoking subprocesses is to use the :func:`run`
-function for all use cases it can handle. For more advanced
-use cases, the underlying :class:`Popen` interface can be used directly.
+function for all use cases it can handle. For more advanced use cases, the
+underlying :class:`Popen` interface can be used directly.
The :func:`run` function was added in Python 3.5; if you need to retain
compatibility with older versions, see the :ref:`call-function-trio` section.