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 gromgull
Recipients gromgull
Date 2011-03-23.13:30:22
SpamBayes Score 0.00090580434
Marked as misclassified No
Message-id <1300887023.39.0.212589786895.issue11649@psf.upfronthosting.co.za>
In-reply-to
Content
The startElementNS method in the XMLGenerator ignores the encoding set. 

it does: 

self._out.write(' xmlns:%s="%s"' % (prefix, uri))

whereas it should have done: 

self._write(' xmlns:%s="%s"' % (prefix, uri))

Issue 938076 was similar to this, but for a different method.
History
Date User Action Args
2011-03-23 13:30:23gromgullsetrecipients: + gromgull
2011-03-23 13:30:23gromgullsetmessageid: <1300887023.39.0.212589786895.issue11649@psf.upfronthosting.co.za>
2011-03-23 13:30:22gromgulllinkissue11649 messages
2011-03-23 13:30:22gromgullcreate