]> granicus.if.org Git - python/commitdiff
Make the references to Popen in the description of Call
authorR. David Murray <rdmurray@bitdance.com>
Tue, 16 Feb 2010 17:55:26 +0000 (17:55 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Tue, 16 Feb 2010 17:55:26 +0000 (17:55 +0000)
and check_call into links.

Doc/library/subprocess.rst

index e422fde74001eb172b404b04526322364be1b4cc..0dac62e4fc932a5e9df21253816465da2e85c620 100644 (file)
@@ -186,7 +186,7 @@ This module also defines two shortcut functions:
    Run command with arguments.  Wait for command to complete, then return the
    :attr:`returncode` attribute.
 
-   The arguments are the same as for the Popen constructor.  Example::
+   The arguments are the same as for the :class:`Popen` constructor.  Example::
 
       >>> retcode = subprocess.call(["ls", "-l"])
 
@@ -205,7 +205,7 @@ This module also defines two shortcut functions:
    :exc:`CalledProcessError` object will have the return code in the
    :attr:`returncode` attribute.
 
-   The arguments are the same as for the Popen constructor.  Example::
+   The arguments are the same as for the :class:`Popen` constructor.  Example::
 
       >>> subprocess.check_call(["ls", "-l"])
       0