We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c87cb49 commit fe9730dCopy full SHA for fe9730d
Lib/html/parser.py
@@ -204,12 +204,12 @@ def goahead(self, end):
204
if k < 0:
205
if not end:
206
break
207
- if starttagopen.match(rawdata, i): # < + letter
+ if starttagopen.match(rawdata, i): # < + letter
208
pass
209
elif startswith("</", i):
210
if i + 2 == n:
211
self.handle_data("</")
212
- elif endtagopen.match(rawdata, i): # </ + letter
+ elif endtagopen.match(rawdata, i): # </ + letter
213
214
else:
215
# bogus comment
0 commit comments