diff options
author | Jules Lasne (jlasne) <jules.lasne@gmail.com> | 2019-11-19 12:14:53 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-11-19 12:14:53 (GMT) |
commit | f25875af425a3480e557aaedf49c3bb867bcbd5d (patch) | |
tree | 2ad9744f2c766fe4abf8416183463f3bb05aef00 /Doc/library/subprocess.rst | |
parent | b1f160a236cb590b1c1a678ca5fc19d5c75dcd83 (diff) | |
download | cpython-f25875af425a3480e557aaedf49c3bb867bcbd5d.zip cpython-f25875af425a3480e557aaedf49c3bb867bcbd5d.tar.gz cpython-f25875af425a3480e557aaedf49c3bb867bcbd5d.tar.bz2 |
Added missing coma after end of list in subprocess.rst (GH-17217)
Automerge-Triggered-By: @csabella
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 19290bf..f2e5463 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 |