summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-29 10:19:53 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-29 10:19:53 (GMT)
commit0e90e99188d6fb54c3f5b31a0488318d9c38309d (patch)
treebaeb9819ae83194653cd3c3d4760a6c19c787a4d /Doc/library/subprocess.rst
parent567eba1852ed89e5cf93dbce33f7e2ca73e8f05d (diff)
parentfbc1c268031a9c8fad65f49c8381b6145bd66ffc (diff)
downloadcpython-0e90e99188d6fb54c3f5b31a0488318d9c38309d.zip
cpython-0e90e99188d6fb54c3f5b31a0488318d9c38309d.tar.gz
cpython-0e90e99188d6fb54c3f5b31a0488318d9c38309d.tar.bz2
Issue #19795: Improved markup of True/False constants.
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 dd8a5d2..7fbe398 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -522,7 +522,7 @@ functions.
*executable* (or for the first item in *args*) relative to *cwd* if the
executable path is a relative path.
- If *restore_signals* is True (the default) all signals that Python has set to
+ If *restore_signals* is true (the default) all signals that Python has set to
SIG_IGN are restored to SIG_DFL in the child process before the exec.
Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
(Unix only)
@@ -530,7 +530,7 @@ functions.
.. versionchanged:: 3.2
*restore_signals* was added.
- If *start_new_session* is True the setsid() system call will be made in the
+ If *start_new_session* is true the setsid() system call will be made in the
child process prior to the execution of the subprocess. (Unix only)
.. versionchanged:: 3.2