[issue8151] [patch] convenience links for subprocess.call()

anatoly techtonik report at bugs.python.org
Mon Mar 15 23:29:57 CET 2010


New submission from anatoly techtonik <techtonik at gmail.com>:

http://codereview.appspot.com/577041/show

Index: make.bat
===================================================================
--- make.bat	(revision 78986)
+++ make.bat	(working copy)
@@ -1,4 +1,4 @@
-@@echo off
+ at echo off
 setlocal
 
 set SVNROOT=http://svn.python.org/projects
Index: library/subprocess.rst
===================================================================
--- library/subprocess.rst	(revision 78986)
+++ library/subprocess.rst	(working copy)
@@ -185,7 +185,7 @@
    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 = call(["ls", "-l"])
 
@@ -197,7 +197,7 @@
    :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::
 
       check_call(["ls", "-l"])

----------
assignee: georg.brandl
components: Documentation
files: subprocess.call.doc.diff
keywords: patch
messages: 101136
nosy: georg.brandl, techtonik
severity: normal
status: open
title: [patch] convenience links for subprocess.call()
Added file: http://bugs.python.org/file16557/subprocess.call.doc.diff

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue8151>
_______________________________________


More information about the Python-bugs-list mailing list