Skip to content

Constant phases #567

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into constant_phases
  • Loading branch information
ambv committed Mar 3, 2023
commit 0e79592090a19549558e4340be36647ecebd24f1
6 changes: 3 additions & 3 deletions html5lib/html5parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -983,8 +983,8 @@ def processCharacters(self, token):
self.tree.insertText(token["data"])
# This must be bad for performance
if (self.parser.framesetOK and
any([char not in spaceCharacters
for char in token["data"]])):
any(char not in spaceCharacters
for char in token["data"])):
self.parser.framesetOK = False

def processSpaceCharactersNonPre(self, token):
Expand Down Expand Up @@ -1834,7 +1834,7 @@ def __init__(self, *args, **kwargs):

def flushCharacters(self):
data = "".join([item["data"] for item in self.characterTokens])
if any([item not in spaceCharacters for item in data]):
if any(item not in spaceCharacters for item in data):
token = {"type": tokenTypes["Characters"], "data": data}
self.parser.phases["inTable"].insertText(token)
elif data:
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.