[Python-checkins] [3.8] Added missing coma after end of list in subprocess.rst (GH-17389)

Benjamin Peterson webhook-mailer at python.org
Thu Nov 28 23:48:03 EST 2019


https://github.com/python/cpython/commit/305189ecdc8322c22879a04564cad5989f937462
commit: 305189ecdc8322c22879a04564cad5989f937462
branch: 3.8
author: Jules Lasne (jlasne) <jules.lasne at gmail.com>
committer: Benjamin Peterson <benjamin at python.org>
date: 2019-11-28T22:47:45-06:00
summary:

[3.8] Added missing coma after end of list in subprocess.rst (GH-17389)

(cherry picked from commit f25875af425a3480e557aaedf49c3bb867bcbd5d)

files:
M Doc/library/subprocess.rst

diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 954e0fec11828..ea12cd133a6ff 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -596,7 +596,7 @@ functions.
 
       Popen and the other functions in this module that use it raise an
       :ref:`auditing event <auditing>` ``subprocess.Popen`` with arguments
-      ``executable``, ``args``, ``cwd``, ``env``. The value for ``args``
+      ``executable``, ``args``, ``cwd``, and ``env``. The value for ``args``
       may be a single string or a list of strings, depending on platform.
 
    .. versionchanged:: 3.2



More information about the Python-checkins mailing list