diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-04-03 08:46:05 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-04-03 08:46:05 -0400 |
commit | 5fc56eb1ca8ab379e75f512fcc61beabdfb42c51 (patch) | |
tree | f744639a470271553802bdbd0ec597273b4a30b4 | |
parent | b9348e76e40f9324330b496824d81941e9ee69d8 (diff) | |
download | cpython-git-5fc56eb1ca8ab379e75f512fcc61beabdfb42c51.tar.gz |
#14481: fix formatting of example in subprocess docs.
-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 2ba960a8e3..5e4bcd9176 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -685,7 +685,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 |