Thanks to visit codestin.com Credit goes to github.com
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 11a1ddc commit a53f6ebCopy full SHA for a53f6eb
src/tokenizer.py
@@ -136,8 +136,10 @@ def consumeNumberEntity(self, isHex):
136
# If the integer is between 127 and 160 (so 128 and bigger and 159 and
137
# smaller) we need to do the "windows trick".
138
if 127 < charAsInt < 160:
139
- self.tokenQueue.append({"type": "ParseError", "data":
140
- _("Entity used with illegal number (windows-1252 reference).")})
+ #XXX - removed parse error from windows 1252 entity for now
+ #we may want to reenable this later
141
+ #self.tokenQueue.append({"type": "ParseError", "data":
142
+ # _("Entity used with illegal number (windows-1252 reference).")})
143
144
charAsInt = entitiesWindows1252[charAsInt - 128]
145
0 commit comments