]> granicus.if.org Git - python/commitdiff
#14481: fix formatting of example in subprocess docs.
authorR David Murray <rdmurray@bitdance.com>
Tue, 3 Apr 2012 12:46:05 +0000 (08:46 -0400)
committerR David Murray <rdmurray@bitdance.com>
Tue, 3 Apr 2012 12:46:05 +0000 (08:46 -0400)
Doc/library/subprocess.rst

index 2ba960a8e3cde1d9536f6c63b5fc206bbdf6db4f..5e4bcd917698365c09feb7a56720679f0cb35563 100644 (file)
@@ -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