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 jwilk
Recipients jwilk
Date 2009-12-30.14:01:33
SpamBayes Score 0.0021989124
Marked as misclassified No
Message-id <1262181695.14.0.680778590248.issue7599@psf.upfronthosting.co.za>
In-reply-to
Content
$ cat buggy.py 
import sys
from xml.etree import ElementTree as et
root = et.Element('root')
root.text = u'\x07'
et.ElementTree(root).write(sys.stdout)

$ python buggy.py | xmllint -
-:1: parser error : PCDATA invalid Char value 7
<root></root>
      ^
History
Date User Action Args
2009-12-30 14:01:35jwilksetrecipients: + jwilk
2009-12-30 14:01:35jwilksetmessageid: <1262181695.14.0.680778590248.issue7599@psf.upfronthosting.co.za>
2009-12-30 14:01:34jwilklinkissue7599 messages
2009-12-30 14:01:33jwilkcreate