summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-19 13:44:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-19 13:44:47 (GMT)
commit0bbf8c08ab8915e9eb50bbe26aef1f74cc01f605 (patch)
tree2dd281b4c444e734299a0c5fb62696ddc2ce795c /Doc/library/subprocess.rst
parent989db5c880cbe85e49857cf44daf8b6c9ccbe0b6 (diff)
parenta97cd2eb17e0dc829e02119ea6f04198a419ed20 (diff)
downloadcpython-0bbf8c08ab8915e9eb50bbe26aef1f74cc01f605.zip
cpython-0bbf8c08ab8915e9eb50bbe26aef1f74cc01f605.tar.gz
cpython-0bbf8c08ab8915e9eb50bbe26aef1f74cc01f605.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 773d207..26cf5bc 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -361,8 +361,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