diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-04-03 08:46:48 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-04-03 08:46:48 -0400 |
commit | 28b8b947601c4e414bb833e0154aecc9375be631 (patch) | |
tree | 016a61ca0b1a3904d7400a8c1af3dce4f623480b /Doc/library/subprocess.rst | |
parent | 80d50428ce7697cc2f1fdb4370800b89399c4cda (diff) | |
download | cpython-git-28b8b947601c4e414bb833e0154aecc9375be631.tar.gz |
#14481: fix formatting of example in subprocess docs.
Diffstat (limited to 'Doc/library/subprocess.rst')
-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 b7e87ab302..90a01d0a8f 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -735,7 +735,7 @@ The p1.stdout.close() call after starting the p2 is important in order for p1 to receive a SIGPIPE if p2 exits before p1. Alternatively, for trusted input, the shell's own pipeline support may still -be used directly: +be used directly:: output=`dmesg | grep hda` # becomes |