]> granicus.if.org Git - python/commitdiff
Replace backquote with command substitution in subprocess doc example (GH-13941)
authorDavid Jones <drj@pobox.com>
Tue, 16 Jul 2019 14:55:19 +0000 (15:55 +0100)
committerGregory P. Smith <greg@krypto.org>
Tue, 16 Jul 2019 14:55:19 +0000 (07:55 -0700)
Replace backquotes with POSIXy command substitution in example.

Doc/library/subprocess.rst
Doc/tools/susp-ignored.csv

index af338795dae340530957ebf5a5870cf2633b40dd..7e1e3f942c1c331394913a4b2f504c7fbedde145 100644 (file)
@@ -1166,12 +1166,12 @@ In the following examples, we assume that the relevant functions have already
 been imported from the :mod:`subprocess` module.
 
 
-Replacing /bin/sh shell backquote
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Replacing :program:`/bin/sh` shell command substitution
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 .. code-block:: bash
 
-   output=`mycmd myarg`
+   output=$(mycmd myarg)
 
 becomes::
 
@@ -1182,7 +1182,7 @@ Replacing shell pipeline
 
 .. code-block:: bash
 
-   output=`dmesg | grep hda`
+   output=$(dmesg | grep hda)
 
 becomes::
 
@@ -1199,7 +1199,7 @@ be used directly:
 
 .. code-block:: bash
 
-   output=`dmesg | grep hda`
+   output=$(dmesg | grep hda)
 
 becomes::
 
index fcf556ec0daf2ea71322bdeb1a58e067b24f97c0..80757752388f181adde3e90b6c1b4f0c843072f0 100644 (file)
@@ -218,8 +218,6 @@ library/stdtypes,,:len,s[len(s):len(s)]
 library/stdtypes,,::,>>> y = m[::2]
 library/stdtypes,,::,>>> z = y[::-2]
 library/string,,`,"!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~"
-library/subprocess,,`,"output=`dmesg | grep hda`"
-library/subprocess,,`,"output=`mycmd myarg`"
 library/tarfile,,:bz2,
 library/tarfile,,:compression,filemode[:compression]
 library/tarfile,,:gz,