[issue45421] Remove dead code from html.parser

2021-10-12 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 ___ Python tracker ___ __

[issue45421] Remove dead code from html.parser

2021-10-12 Thread Mariatta
Mariatta added the comment: New changeset 562c0d7398b9f34ff63a1dc77113dad96a93ce4e by Alberto Mardegan in branch 'main': bpo-45421: Remove dead code from html.parser (GH-28847) https://github.com/python/cpython/commit/562c0d7398b9f34ff63a1dc77113dad96a93ce4e -- nosy: +Mariatta

[issue45421] Remove dead code from html.parser

2021-10-09 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +27159 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28847 ___ Python tracker _

[issue45421] Remove dead code from html.parser

2021-10-09 Thread Alberto Mardegan
New submission from Alberto Mardegan : There appears to be some dead code in the html.parser module: https://github.com/python/cpython/blob/main/Lib/html/parser.py#L331-L337 Support for parser errors (with line and offset information) was removed long ago, so this code is useless now. The upd