bpo-45421: Remove dead code from html.parser (GH-28847)

Support for HtmlParserError was removed back in 2014 with commit
73a4359eb0, however this small block was
missed.
This commit is contained in:
Alberto Mardegan 2021-10-12 20:12:21 +03:00 committed by GitHub
parent cfb1df3b71
commit 562c0d7398
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -328,13 +328,6 @@ class HTMLParser(_markupbase.ParserBase):
end = rawdata[k:endpos].strip()
if end not in (">", "/>"):
lineno, offset = self.getpos()
if "\n" in self.__starttag_text:
lineno = lineno + self.__starttag_text.count("\n")
offset = len(self.__starttag_text) \
- self.__starttag_text.rfind("\n")
else:
offset = offset + len(self.__starttag_text)
self.handle_data(rawdata[i:endpos])
return endpos
if end.endswith('/>'):