Commit 6dfe6629 authored by R. David Murray's avatar R. David Murray

Make the references to Popen in the description of Call

and check_call into links.
parent 7875ef67
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment