diff options
author | Jack DeVries <58614260+jdevries3133@users.noreply.github.com> | 2021-07-22 23:06:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 23:06:18 (GMT) |
commit | 7d25254cf0763b62f4c4a3019e56385cab597b9f (patch) | |
tree | 795d07fed014c625654b13241706160d276bbb9d /Doc | |
parent | 2e3744d50b6e30ea24351e55b4352dcc58fd469e (diff) | |
download | cpython-7d25254cf0763b62f4c4a3019e56385cab597b9f.zip cpython-7d25254cf0763b62f4c4a3019e56385cab597b9f.tar.gz cpython-7d25254cf0763b62f4c4a3019e56385cab597b9f.tar.bz2 |
bpo-44713: [doc fix]: typo in subprocess.rst (GH-27297)
This fixes a small typo. The code fragment should not be quoted. Thank you
@merwok for the feedback.
Diffstat (limited to 'Doc')
-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 6c127dc..a950474 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -689,7 +689,7 @@ execute, will be re-raised in the parent. The most common exception raised is :exc:`OSError`. This occurs, for example, when trying to execute a non-existent file. Applications should prepare for -:exc:`OSError` exceptions. Note that, when ``"shell=True"``, :exc:`OSError` +:exc:`OSError` exceptions. Note that, when ``shell=True``, :exc:`OSError` will be raised by the child only if the selected shell itself was not found. To determine if the shell failed to find the requested application, it is necessary to check the return code or output from the subprocess. |