Message196824
| Author | brianvanderburg2 |
|---|---|
| Recipients | brianvanderburg2 |
| Date | 2013-09-03.05:36:58 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1378186619.58.0.930376227557.issue18911@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
When I have unicode data to save, it seems that it does not save correctly, giving an encode error. I know this exists on 2.7 and from checking the code in xml/dom/minidom.py it looks like it does in 3.2 as well. The method call that seem to be problematic is doc.writexml(open(filename, "wb"), "", " ", "utf-8") Currently I found this to work: doc.writexml(codecs.open(filename, "w", "utf-8"), "", " ", "utf-8") It seems like this should be handled by the writexml method since it already has the specified encoding. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2013-09-03 05:36:59 | brianvanderburg2 | set | recipients: + brianvanderburg2 |
| 2013-09-03 05:36:59 | brianvanderburg2 | set | messageid: <1378186619.58.0.930376227557.issue18911@psf.upfronthosting.co.za> |
| 2013-09-03 05:36:59 | brianvanderburg2 | link | issue18911 messages |
| 2013-09-03 05:36:58 | brianvanderburg2 | create | |