]> 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:48 +0000 (08:46 -0400)
committerR David Murray <rdmurray@bitdance.com>
Tue, 3 Apr 2012 12:46:48 +0000 (08:46 -0400)
Doc/library/subprocess.rst

index b7e87ab302d5bc3279683b483360721c4d149d02..90a01d0a8f5fe0ab4353e292d0d92a9906d619b4 100644 (file)
@@ -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