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: typo in documentation, section extending python
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: cdz, docs@python, martin.panter, python-dev, zach.ware
Priority: normal Keywords: patch

Created on 2015-07-22 02:47 by cdz, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
extending_doc_typo.diff cdz, 2015-07-22 02:47 patch fixing typo
Messages (4)
msg247080 - (view) Author: cdz (cdz) * Date: 2015-07-22 02:47
In section "3. Building C and C++ Extensions with distutils" there is unnecessary "\" in the middle of the line. Seems to be bulk (re)formatting issue.

Simple patch fixing the issue is attached.
msg247082 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2015-07-22 03:14
Nice and obvious fix, looks like it also applies to Python 2.
msg247084 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-07-22 03:35
New changeset 91b738cfdc2f by Zachary Ware in branch '2.7':
Issue #24680: Remove random backslash.  Patch by cdz.
https://hg.python.org/cpython/rev/91b738cfdc2f

New changeset cf0011b6ebbd by Zachary Ware in branch '3.4':
Issue #24680: Remove random backslash.  Patch by cdz.
https://hg.python.org/cpython/rev/cf0011b6ebbd

New changeset d7229f26dbdb by Zachary Ware in branch '3.5':
Issue #24680: Merge with 3.4
https://hg.python.org/cpython/rev/d7229f26dbdb

New changeset 96910e822266 by Zachary Ware in branch 'default':
Closes #24680: Merge with 3.5
https://hg.python.org/cpython/rev/96910e822266
msg247085 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2015-07-22 03:35
Fixed! Thanks for the report and patch, cdz, and thanks for the triage, Martin.
History
Date User Action Args
2022-04-11 14:58:19adminsetgithub: 68868
2015-07-22 03:35:57zach.waresetnosy: + zach.ware
messages: + msg247085
2015-07-22 03:35:06python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg247084

resolution: fixed
stage: commit review -> resolved
2015-07-22 03:14:28martin.pantersetversions: + Python 2.7, Python 3.4, Python 3.5
nosy: + martin.panter

messages: + msg247082

stage: commit review
2015-07-22 02:47:29cdzcreate