From 6dfe66298b8a89d04ca94ee5f878a86b59cbc4d9 Mon Sep 17 00:00:00 2001 From: "R. David Murray" Date: Tue, 16 Feb 2010 17:55:26 +0000 Subject: Make the references to Popen in the description of Call and check_call into links. --- Doc/library/subprocess.rst | 4 ++-- 1 file 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 -- cgit v0.12