summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-02-16 17:55:26 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-02-16 17:55:26 (GMT)
commit6dfe66298b8a89d04ca94ee5f878a86b59cbc4d9 (patch)
tree576ed4c9134f832c77307b6d6aa139a6f59cccad /Doc
parent7875ef67cd036409bff6bf78f5ffacca7adc7188 (diff)
downloadcpython-6dfe66298b8a89d04ca94ee5f878a86b59cbc4d9.zip
cpython-6dfe66298b8a89d04ca94ee5f878a86b59cbc4d9.tar.gz
cpython-6dfe66298b8a89d04ca94ee5f878a86b59cbc4d9.tar.bz2
Make the references to Popen in the description of Call
and check_call into links.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/subprocess.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index e422fde..0dac62e 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -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