]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed a missing . and a missing capital letter. (GH-12170)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 4 Mar 2019 19:41:31 +0000 (11:41 -0800)
committerGitHub <noreply@github.com>
Mon, 4 Mar 2019 19:41:31 +0000 (11:41 -0800)
(cherry picked from commit 7e9ce4c89e9a34ff84a89831812bc8b42d37ac1f)

Co-authored-by: Jules Lasne (jlasne) <jlasne@student.42.fr>
Doc/library/subprocess.rst

index ff91b5d4c7585ac9654a8c1f6c6bc16172a7bfdc..18be75c10ce45b06fa3b4ecb45304d9b245e5592 100644 (file)
@@ -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.