From: R. David Murray Date: Tue, 16 Feb 2010 17:55:26 +0000 (+0000) Subject: Make the references to Popen in the description of Call X-Git-Tag: v2.7a4~183 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6dfe66298b8a89d04ca94ee5f878a86b59cbc4d9;p=thirdparty%2FPython%2Fcpython.git 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 e422fde74001..0dac62e4fc93 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