diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:43:42 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:43:42 (GMT) |
commit | a97cd2eb17e0dc829e02119ea6f04198a419ed20 (patch) | |
tree | ef03c46125b86e2cec7846b4d8fb4c071728067b /Doc/library/subprocess.rst | |
parent | ecf41da83e5db98734b19f205899168cc56da943 (diff) | |
download | cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.zip cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.tar.gz cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.tar.bz2 |
Issue #19795: Mark up True and False as literal text instead of bold.
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 615adb2..33563bb 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -347,8 +347,8 @@ functions. manner described in :ref:`converting-argument-sequence`. This is because the underlying ``CreateProcess()`` operates on strings. - The *shell* argument (which defaults to *False*) specifies whether to use - the shell as the program to execute. If *shell* is *True*, it is + The *shell* argument (which defaults to ``False``) specifies whether to use + the shell as the program to execute. If *shell* is ``True``, it is recommended to pass *args* as a string rather than as a sequence. On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If |