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: Non-escaped '\n' in docstrings
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: docs@python, ezio.melotti, python-dev, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2012-09-20 08:26 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
escape_nl2.patch serhiy.storchaka, 2012-09-20 08:26 Patch for 3.2 and 3.3 review
escape_nl2-2.7.patch serhiy.storchaka, 2012-09-20 08:27 Patch for 2.7 review
Messages (3)
msg170794 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2012-09-20 08:26
Here are patches that escapes '\n' in docstrings of LWPCookieJar and (for 2.7 only) of email.
msg170885 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-09-21 13:31
New changeset 7a125913a375 by Ezio Melotti in branch '2.7':
#15980: properly escape newlines in docstrings.  Patch by Serhiy Storchaka.
http://hg.python.org/cpython/rev/7a125913a375

New changeset e582ad1aee62 by Ezio Melotti in branch '3.2':
#15980: properly escape newlines in docstrings.  Patch by Serhiy Storchaka.
http://hg.python.org/cpython/rev/e582ad1aee62

New changeset 1830426da082 by Ezio Melotti in branch 'default':
#15980: merge with 3.2.
http://hg.python.org/cpython/rev/1830426da082
msg170886 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-09-21 13:32
Fixed, thanks for the patch!
History
Date User Action Args
2022-04-11 14:57:36adminsetgithub: 60184
2012-09-21 13:32:28ezio.melottisetstatus: open -> closed
messages: + msg170886

assignee: docs@python -> ezio.melotti
resolution: fixed
stage: resolved
2012-09-21 13:31:47python-devsetnosy: + python-dev
messages: + msg170885
2012-09-20 08:27:02serhiy.storchakasetfiles: + escape_nl2-2.7.patch
2012-09-20 08:26:31serhiy.storchakacreate