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: Adds missing backslash to devguide setup page
Type: enhancement Stage: resolved
Components: Devguide Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Saimadhav.Heblikar, ezio.melotti, python-dev, zach.ware
Priority: normal Keywords: patch

Created on 2014-01-30 14:16 by Saimadhav.Heblikar, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
mywork.patch Saimadhav.Heblikar, 2014-01-30 14:16 Adds missing backslash to devguide setup page
Messages (4)
msg209718 - (view) Author: Saimadhav Heblikar (Saimadhav.Heblikar) * Date: 2014-01-30 14:16
This is a simple typofix.
On line 224 and 225,there were unescaped backslashes,which resulted in the external.bat and external-amd64.bat appeared as Tools\buildbotexternal.bat and Tools\buildbotexternal-amd64.bat respectively.
this patch escapes the two back-slashes,so that the text appears correctly as
Tools\buildbot\external.bat or Tools\buildbot\external-amd64.bat
msg209720 - (view) Author: Saimadhav Heblikar (Saimadhav.Heblikar) * Date: 2014-01-30 14:32
http://hg.python.org/devguide/rev/99419f310cf1
msg209723 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-01-30 16:23
New changeset 7d95a62513ce by Zachary Ware in branch 'default':
Issue #20448: Escape backslashes.  Caught by Saimadhav Heblikar.
http://hg.python.org/devguide/rev/7d95a62513ce
msg209724 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2014-01-30 16:26
Actually, this was still an issue :)

Thanks for the report and patch!  If you intend to ever contribute more than the simplest of patches, please consider signing a contributor agreement: http://www.python.org/psf/contrib/
History
Date User Action Args
2022-04-11 14:57:57adminsetgithub: 64647
2014-01-30 16:26:34zach.waresetversions: - Python 3.4
nosy: + zach.ware

messages: + msg209724

stage: resolved
2014-01-30 16:23:48python-devsetnosy: + python-dev
messages: + msg209723
2014-01-30 15:21:28r.david.murraysetresolution: duplicate -> fixed
2014-01-30 14:32:53Saimadhav.Heblikarsetstatus: open -> closed
resolution: duplicate
messages: + msg209720
2014-01-30 14:16:17Saimadhav.Heblikarcreate