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 resplin
Recipients resplin
Date 2008-04-17.03:01:56
SpamBayes Score 0.023171324
Marked as misclassified No
Message-id <1208401320.5.0.728937941745.issue2647@psf.upfronthosting.co.za>
In-reply-to
Content
I would like it to leave my &apos; alone, just like it does with my &lt;
and &gt;

Python 2.5.1 (r251:54863, Sep 21 2007, 22:46:31)
[GCC 4.2.1 (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from xml.dom import minidom
>>> doc = minidom.parseString("<tag>&lt;a&apos;b&gt;</tag>")
>>> doc.toxml()
u'<?xml version="1.0" ?><tag>&lt;a\'b&gt;</tag>'
>>>
History
Date User Action Args
2008-04-17 03:02:00resplinsetspambayes_score: 0.0231713 -> 0.023171324
recipients: + resplin
2008-04-17 03:02:00resplinsetspambayes_score: 0.0231713 -> 0.0231713
messageid: <1208401320.5.0.728937941745.issue2647@psf.upfronthosting.co.za>
2008-04-17 03:01:57resplinlinkissue2647 messages
2008-04-17 03:01:56resplincreate