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.
illegal_entities
1 parent fef8724 commit 2ff36e6Copy full SHA for 2ff36e6
tests/test_html.py
@@ -66,6 +66,7 @@ def test_illegal_entities(self):
66
self.assertEqual(replace_entities("xy"), "xy")
67
self.assertEqual(replace_entities("xy", remove_illegal=False), "xy")
68
self.assertEqual(replace_entities("�"), "")
69
+ self.assertEqual(replace_entities("�", remove_illegal=False), "�")
70
71
def test_browser_hack(self):
72
# check browser hack for numeric character references in the 80-9F range
0 commit comments