diff options
author | Jules Lasne (jlasne) <jlasne@student.42.fr> | 2019-03-04 18:12:04 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-03-04 18:12:04 (GMT) |
commit | 7e9ce4c89e9a34ff84a89831812bc8b42d37ac1f (patch) | |
tree | 3826896b099cda11070101e907b4ad87dcd0b2f4 /Doc/library/subprocess.rst | |
parent | b7bc283ab6a23ee98784400ebffe7fe410232a2e (diff) | |
download | cpython-7e9ce4c89e9a34ff84a89831812bc8b42d37ac1f.zip cpython-7e9ce4c89e9a34ff84a89831812bc8b42d37ac1f.tar.gz cpython-7e9ce4c89e9a34ff84a89831812bc8b42d37ac1f.tar.bz2 |
Fixed a missing . and a missing capital letter. (GH-12170)
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index e784458..9ba0d30 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. |