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.

Author techtonik
Recipients georg.brandl, techtonik
Date 2010-03-15.22:29:54
SpamBayes Score 0.015246416
Marked as misclassified No
Message-id <1268692197.73.0.576136858806.issue8151@psf.upfronthosting.co.za>
In-reply-to
Content
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"])
History
Date User Action Args
2010-03-15 22:29:57techtoniksetrecipients: + techtonik, georg.brandl
2010-03-15 22:29:57techtoniksetmessageid: <1268692197.73.0.576136858806.issue8151@psf.upfronthosting.co.za>
2010-03-15 22:29:55techtoniklinkissue8151 messages
2010-03-15 22:29:55techtonikcreate