From: R David Murray Date: Tue, 3 Apr 2012 12:46:05 +0000 (-0400) Subject: #14481: fix formatting of example in subprocess docs. X-Git-Tag: v2.7.4rc1~924 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5fc56eb1ca8ab379e75f512fcc61beabdfb42c51;p=thirdparty%2FPython%2Fcpython.git #14481: fix formatting of example in subprocess docs. --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 2ba960a8e3cd..5e4bcd917698 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