[Python-checkins] Fixed a missing . and a missing capital letter. (GH-12170)

Miss Islington (bot) webhook-mailer at python.org
Mon Mar 4 14:41:44 EST 2019


https://github.com/python/cpython/commit/3f1f9f0eee815264e615a7f600a4d7693710ac6b
commit: 3f1f9f0eee815264e615a7f600a4d7693710ac6b
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-03-04T11:41:31-08:00
summary:

Fixed a missing . and a missing capital letter. (GH-12170)

(cherry picked from commit 7e9ce4c89e9a34ff84a89831812bc8b42d37ac1f)

Co-authored-by: Jules Lasne (jlasne) <jlasne at student.42.fr>

files:
M Doc/library/subprocess.rst

diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index ff91b5d4c758..18be75c10ce4 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.
 



More information about the Python-checkins mailing list