New submission from Dillon Amburgey :
http://docs.python.org/library/xml.dom.html#dom-attr-objects does not label the
name attribute as read-only (like localName) even though it is.
--
assignee: docs@python
components: Documentation
messages: 145155
nosy: dillona, docs@python
priority
Dillon Amburgey added the comment:
The behavior can be verified as follows. Notice that despite changing the
value, the output XML does not change
>>> from xml.dom import minidom, Node
>>> a = minidom.parseString("http://asd.com\";>asd")
>>&