[Python-checkins] r78206 - python/trunk/Doc/library/subprocess.rst

r.david.murray python-checkins at python.org
Tue Feb 16 18:55:27 CET 2010


Author: r.david.murray
Date: Tue Feb 16 18:55:26 2010
New Revision: 78206

Log:
Make the references to Popen in the description of Call
and check_call into links.


Modified:
   python/trunk/Doc/library/subprocess.rst

Modified: python/trunk/Doc/library/subprocess.rst
==============================================================================
--- python/trunk/Doc/library/subprocess.rst	(original)
+++ python/trunk/Doc/library/subprocess.rst	Tue Feb 16 18:55:26 2010
@@ -186,7 +186,7 @@
    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 @@
    :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


More information about the Python-checkins mailing list