8000
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 6da87e0 commit 1bf776cCopy full SHA for 1bf776c
src/tokenizer.py
@@ -364,9 +364,7 @@ def tagOpenState(self):
364
self.state = self.states["closeTagOpen"]
365
else:
366
self.tokenQueue.append({"type": "Characters", "data": u"<"})
367
- # XXX: why was this a self.stream.queue.insert(0, data) rather than append(data)?
368
- #self.stream.unget(data)
369
- self.stream.queue.insert(0, data)
+ self.stream.unget(data)
370
self.state = self.states["data"]
371
return True
372
0 commit comments