From: Jules Lasne (jlasne) Date: Mon, 4 Mar 2019 18:12:04 +0000 (+0100) Subject: Fixed a missing . and a missing capital letter. (GH-12170) X-Git-Tag: v3.8.0a3~177 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e9ce4c89e9a34ff84a89831812bc8b42d37ac1f;p=thirdparty%2FPython%2Fcpython.git Fixed a missing . and a missing capital letter. (GH-12170) --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index e7844587e908..9ba0d30da569 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -959,7 +959,7 @@ The :mod:`subprocess` module exposes the following constants. .. data:: CREATE_NO_WINDOW A :class:`Popen` ``creationflags`` parameter to specify that a new process - will not create a window + will not create a window. .. versionadded:: 3.7 @@ -1295,7 +1295,7 @@ Replacing functions from the :mod:`popen2` module * :class:`Popen` raises an exception if the execution fails. -* the *capturestderr* argument is replaced with the *stderr* argument. +* The *capturestderr* argument is replaced with the *stderr* argument. * ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.