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 mark
Recipients mark
Date 2010-08-05.09:32:08
SpamBayes Score 7.027802e-05
Marked as misclassified No
Message-id <1281000730.31.0.804989593298.issue9522@psf.upfronthosting.co.za>
In-reply-to
Content
If you read in an XML file that specifies its encoding and then later on use xml.etree.ElementTree.write(), it is always written using US-ASCII. 

I think the behaviour should be different:
(1) If the XML that was read included an encoding, that encoding should be remembered and used when writing.
(2) If there is no encoding the default for writing should be UTF-8 (which is the standard for XML files).
(3) For non-XML files use US-ASCII.

Naturally, any of these could be overridden using an encoding argument to the write() method.
History
Date User Action Args
2010-08-05 09:32:10marksetrecipients: + mark
2010-08-05 09:32:10marksetmessageid: <1281000730.31.0.804989593298.issue9522@psf.upfronthosting.co.za>
2010-08-05 09:32:08marklinkissue9522 messages
2010-08-05 09:32:08markcreate