This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: [patch] convenience links for subprocess.call()
Type: behavior Stage:
Components: Documentation Versions: Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: brian.curtin, docs@python, georg.brandl, techtonik
Priority: low Keywords: patch

Created on 2010-03-15 22:29 by techtonik, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
subprocess.call.doc.diff techtonik, 2010-03-15 22:29
Messages (4)
msg101136 - (view) Author: anatoly techtonik (techtonik) Date: 2010-03-15 22:29
http://codereview.appspot.com/577041/show

Index: make.bat
===================================================================
--- make.bat	(revision 78986)
+++ make.bat	(working copy)
@@ -1,4 +1,4 @@
-@@echo off
+@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"])
msg101333 - (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2010-03-19 16:20
This was fixed in r78206 for trunk, but it doesn't look like it made it's way into any of the other branches.
msg107143 - (view) Author: anatoly techtonik (techtonik) Date: 2010-06-05 15:58
easy, just waits to be ported
msg107146 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-06-05 16:15
Already done AFAICS.
History
Date User Action Args
2022-04-11 14:56:58adminsetgithub: 52398
2010-06-05 16:15:00georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg107146
2010-06-05 15:58:02techtoniksetnosy: + docs@python
messages: + msg107143
2010-03-19 16:20:08brian.curtinsetpriority: low

nosy: + brian.curtin
messages: + msg101333

type: behavior
2010-03-19 07:17:31techtoniksetversions: + Python 2.6, Python 2.7
2010-03-15 22:29:56techtonikcreate