summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-19 13:43:42 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-19 13:43:42 (GMT)
commita97cd2eb17e0dc829e02119ea6f04198a419ed20 (patch)
treeef03c46125b86e2cec7846b4d8fb4c071728067b /Doc/library/subprocess.rst
parentecf41da83e5db98734b19f205899168cc56da943 (diff)
downloadcpython-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.rst4
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