From: Benjamin Peterson Date: Wed, 15 Apr 2015 02:12:14 +0000 (-0400) Subject: properly wrap X-Git-Tag: v3.5.0a4~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef9ffcbcd442579e06b2c83f827f521d333ac1cc;p=python properly wrap --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 4fef6ea3f0..9a2f4de62e 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.