summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-04-03 12:47:14 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-04-03 12:47:14 (GMT)
commit395c879da7386ef2df503bf3636da65fa6cb60ef (patch)
treead116feca0dacefb78414d93d18ff4946d407ae9 /Doc/library
parent8f639e03752de93047a433a0bb460e2e57038c3d (diff)
parent28b8b947601c4e414bb833e0154aecc9375be631 (diff)
downloadcpython-395c879da7386ef2df503bf3636da65fa6cb60ef.zip
cpython-395c879da7386ef2df503bf3636da65fa6cb60ef.tar.gz
cpython-395c879da7386ef2df503bf3636da65fa6cb60ef.tar.bz2
Merge #14481: fix formatting of example in subprocess docs.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/subprocess.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index ee88379..a8d65b2 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -804,7 +804,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