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 flox
Recipients effbot, flox, georg.brandl, gvanrossum, r.david.murray, scoder
Date 2010-03-12.12:24:30
SpamBayes Score 2.3554148e-10
Marked as misclassified No
Message-id <1268396672.96.0.689172417646.issue8047@psf.upfronthosting.co.za>
In-reply-to
Content
I plan to merge ET 1.3 in the 3.x branch tomorrow (See #6472)
Currently, the patch is consistent with 3.1 behaviour.
It could be changed later, depending on the pronouncement on this compatibility issue.


> Previously, in ElementTree, serialising without an explicit encoding
> was a way to get a byte encoded serialisation without an XML
> declaration header.

Now you can pass keyword argument "xml_declaration=False" to skip the header explicitely.


> xml.parsers.expat.ExpatError: not well-formed (invalid token): line 1, column 9

Now it works better.


~ $ ./python 
Python 3.2a0 (py3k:78865M, Mar 12 2010, 13:05:30) 
[GCC 4.3.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> locale.getpreferredencoding() == "utf-8"
False
>>> from xml.etree.ElementTree import *
>>> e = Element("tag")
>>> e.text = "hellö"
>>> tostring(e)
'<tag>hellö</tag>'
>>> ElementTree(e).write("out.xml")
>>> tree = parse("out.xml")
>>> dump(tree)
<tag>hellö</tag>
History
Date User Action Args
2010-03-12 12:24:33floxsetrecipients: + flox, gvanrossum, effbot, georg.brandl, scoder, r.david.murray
2010-03-12 12:24:32floxsetmessageid: <1268396672.96.0.689172417646.issue8047@psf.upfronthosting.co.za>
2010-03-12 12:24:30floxlinkissue8047 messages
2010-03-12 12:24:30floxcreate