Commit 54854042 authored by Martin v. Löwis's avatar Martin v. Löwis

Patch to bug #461754: CDATA should not undergo entity subst.

parent 1952e388
......@@ -709,7 +709,7 @@ class CDATASection(Text):
nodeName = "#cdata-section"
def writexml(self, writer, indent="", addindent="", newl=""):
_write_data(writer, "<![CDATA[%s]]>" % self.data)
writer.write("<![CDATA[%s]]>" % self.data)
def _nssplit(qualifiedName):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment