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

This commit is contained in:
Jules Lasne (jlasne) 2019-03-04 19:12:04 +01:00 committed by Serhiy Storchaka
parent b7bc283ab6
commit 7e9ce4c89e
1 changed files with 2 additions and 2 deletions

View 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.