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 eli.bendersky
Recipients Arfrever, cmn, eli.bendersky, ezio.melotti
Date 2012-05-20.03:10:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337483422.04.0.363951054717.issue14849@psf.upfronthosting.co.za>
In-reply-to
Content
Here's a simpler testcase:

import xml.etree.ElementTree as ET

class XElement(ET.Element):
    def __init__(self, tag, attrib={}):
        ET.Element.__init__(self, tag, attrib)

e = XElement('test')
e.text = 'failure'

print(ET.tostring(e))
History
Date User Action Args
2012-05-20 03:10:22eli.benderskysetrecipients: + eli.bendersky, ezio.melotti, Arfrever, cmn
2012-05-20 03:10:22eli.benderskysetmessageid: <1337483422.04.0.363951054717.issue14849@psf.upfronthosting.co.za>
2012-05-20 03:10:18eli.benderskylinkissue14849 messages
2012-05-20 03:10:17eli.benderskycreate