From: Georg Brandl Date: Wed, 19 May 2010 14:11:55 +0000 (+0000) Subject: Merged revisions 78206 via svnmerge from X-Git-Tag: v2.6.6rc1~287 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5296e4b5b3f9ce656307ed7aaeaf49b313be6873;p=python Merged revisions 78206 via svnmerge from 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. ........ --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 805f3ac12a..967c4a97ee 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"]) @@ -198,7 +198,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