[issue13987] Handling of broken markup in HTMLParser on 2.7

2012-02-15 Thread Ezio Melotti
Ezio Melotti added the comment: This should be fixed now. The first two chunks of the attached patch have been committed in the two changesets linked in the previous messages. The third chunk about the end tag has been fixed as part of #13933. The error previously raised by unknown_decl has

[issue13987] Handling of broken markup in HTMLParser on 2.7

2012-02-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3d7904e3f4b9 by Ezio Melotti in branch '2.7': #13987: HTMLParser is now able to handle malformed start tags. http://hg.python.org/cpython/rev/3d7904e3f4b9 -- ___ Python tracker

[issue13987] Handling of broken markup in HTMLParser on 2.7

2012-02-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 11a31eb5da93 by Ezio Melotti in branch '2.7': #13987: HTMLParser is now able to handle EOFs in the middle of a construct. http://hg.python.org/cpython/rev/11a31eb5da93 -- nosy: +python-dev ___ Python tra

[issue13987] Handling of broken markup in HTMLParser on 2.7

2012-02-10 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: +eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue13987] Handling of broken markup in HTMLParser on 2.7

2012-02-10 Thread Ezio Melotti
New submission from Ezio Melotti : The attached patch fixes a few problems with HTMLParser on 2.7. Instead of raising error when invalid markup is detected, the parser now consumes the invalid input and proceeds. This patch is a partial backport of #1486713. After this two more patches will f