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

Miss Islington (bot) webhook-mailer at python.org
Tue Nov 19 07:15:05 EST 2019


https://github.com/python/cpython/commit/f25875af425a3480e557aaedf49c3bb867bcbd5d
commit: f25875af425a3480e557aaedf49c3bb867bcbd5d
branch: master
author: Jules Lasne (jlasne) <jules.lasne at gmail.com>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2019-11-19T04:14:53-08:00
summary:

Added missing coma after end of list in subprocess.rst (GH-17217)



Automerge-Triggered-By: @csabella

files:
M Doc/library/subprocess.rst

diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 19290bfc34c7d..f2e5463d755bb 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -630,7 +630,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