svn+ssh://pythondev@svn.python.org/python/trunk
........
r78206 | r.david.murray | 2010-02-16 18:55:26 +0100 (Di, 16 Feb 2010) | 3 lines
Make the references to Popen in the description of Call
and check_call into links.
........
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"])
: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