# HG changeset patch # User cmlenz # Date 1155305293 0 # Node ID ef761afcedff8d011f1215363a64240ea78cb435 # Parent b49cc51999b97de4465085f8ed54ccba6a0cb1b2 CDATA sections in XML input now appear as CDATA sections in the output. This should address the problem with escaping the contents of `' + text = """""" output = XML(text).render(XHTMLSerializer) - self.assertEqual('', - output) + self.assertEqual(text, output) class HTMLSerializerTestCase(unittest.TestCase):