Issue #18347: ElementTree's html serializer now preserves the case of closing tags.

This commit is contained in:
Christian Heimes 2013-07-05 01:39:49 +02:00
parent be9c841494
commit 54ad7e39df
3 changed files with 13 additions and 3 deletions

View file

@ -751,6 +751,13 @@ class ElementTreeTest(unittest.TestCase):
'<html><link><script>1 < 2</script></html>\n')
self.assertEqual(serialize(e, method="text"), '1 < 2\n')
def test_issue18347(self):
e = ET.XML('<html><CamelCase>text</CamelCase></html>')
self.assertEqual(serialize(e),
'<html><CamelCase>text</CamelCase></html>')
self.assertEqual(serialize(e, method="html"),
'<html><CamelCase>text</CamelCase></html>')
def test_entity(self):
# Test entity handling.