This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author arturcz
Recipients arturcz
Date 2014-02-21.02:04:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392948249.58.0.639879526179.issue20714@psf.upfronthosting.co.za>
In-reply-to
Content
Current support for ]]> inside CDATA is to raise an Exception. However, it could be solved by dividing the ]]> to two strings:
- ]]
- >
and each one is a separate CDATA inside elemement. So, to put ]]> inside CDATA one can write:
<element>
<![CDATA[]]]]><![CDATA[>]]>
</element>
History
Date User Action Args
2014-02-21 02:04:09arturczsetrecipients: + arturcz
2014-02-21 02:04:09arturczsetmessageid: <1392948249.58.0.639879526179.issue20714@psf.upfronthosting.co.za>
2014-02-21 02:04:09arturczlinkissue20714 messages
2014-02-21 02:04:09arturczcreate