[issue11649] startElementNS in xml.sax.saxutils.XMLGenerator ignored encoding

Gunnar Aastrand Grimnes report at bugs.python.org
Wed Mar 23 14:30:23 CET 2011


New submission from Gunnar Aastrand Grimnes <gromgull at gmail.com>:

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.

----------
components: XML
messages: 131863
nosy: gromgull
priority: normal
severity: normal
status: open
title: startElementNS in xml.sax.saxutils.XMLGenerator ignored encoding
type: behavior
versions: Python 2.6

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue11649>
_______________________________________


More information about the Python-bugs-list mailing list