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: Fix markup in Misc/NEWS
Type: Stage: resolved
Components: Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: dmalcolm, eli.bendersky, eric.araujo, ezio.melotti
Priority: normal Keywords: easy

Created on 2010-11-18 02:51 by eric.araujo, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (6)
msg121428 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-11-18 02:51
Misc/NEWS is supposed to be in reST, but there are at present markup errors.  Not sure if 3.1 and 2.7 should be fixed too.
msg121468 - (view) Author: Dave Malcolm (dmalcolm) (Python committer) Date: 2010-11-18 16:08
Perhaps "make patchcheck" (a.k.a Tools/scripts/patchcheck.py ) should verify the markup of Misc/NEWS?  Not sure what the easiest way to do that is, though, without bringing in lots of deps.
msg121600 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2010-11-20 10:24
I ran Misc/NEWS through rst2hml, and apart from unknown python-specific interpreter roles, there are two warnings:

Misc/NEWS:64: (WARNING/2) Inline strong start-string without end-string.
Misc/NEWS:128: (WARNING/2) Inline emphasis start-string without end-string.

Are these warnings what you refer to when you say there are markup errors, or is there something else?
msg121601 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2010-11-20 10:39
A fix to Misc/NEWS was committed by Georg in revision 86550. Now Misc/NEWS no longer causes warnings with `rst2html`. Éric - if this is what you meant, the issue can be closed.
msg121624 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-11-20 12:38
Fixed indeed.

Dave: Please open a feature request, this is a good idea.
msg122144 - (view) Author: Dave Malcolm (dmalcolm) (Python committer) Date: 2010-11-22 16:30
Opened as issue 10507
History
Date User Action Args
2022-04-11 14:57:09adminsetgithub: 54659
2010-11-22 16:30:23dmalcolmsetmessages: + msg122144
2010-11-20 12:38:36eric.araujosetstatus: open -> closed
resolution: fixed
messages: + msg121624

stage: needs patch -> resolved
2010-11-20 10:39:48eli.benderskysetmessages: + msg121601
2010-11-20 10:29:39ezio.melottisetnosy: + ezio.melotti
2010-11-20 10:24:44eli.benderskysetnosy: + eli.bendersky
messages: + msg121600
2010-11-18 16:08:51dmalcolmsetnosy: + dmalcolm
messages: + msg121468
2010-11-18 02:51:12eric.araujocreate