The attribute list is a transient interface to the underlying
dictionaries. Mutations here will change the underlying element's
dictionary.
Ordering is imposed artificially and does not reflect the order of
attributes as found in an input document.
|
__init__(self,
attrs,
attrsNS,
ownerElement)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
get(self,
name,
value=None) |
|
|
|
|
|
|
|
__getitem__(self,
attname_or_tuple) |
|
|
|
__setitem__(self,
attname,
value) |
|
|
|
|
|
getNamedItemNS(self,
namespaceURI,
localName) |
|
|
|
removeNamedItem(self,
name) |
|
|
|
removeNamedItemNS(self,
namespaceURI,
localName) |
|
|
|
|
|
setNamedItemNS(self,
node) |
|
|
|
__delitem__(self,
attname_or_tuple) |
|
|
|
|
|
__setstate__(self,
state) |
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|