|
__getitem__(...)
Returns the subelement at the given position. |
|
|
|
|
|
|
|
__new__(T,
S,
...)
Returns:
a new object with type S, a subtype of T |
|
|
|
|
|
|
|
get(...)
Gets an element attribute. |
|
|
|
|
|
getnext(...)
Returns the following sibling of this element or None. |
|
|
|
getparent(...)
Returns the parent of this element or None for the root
element. |
|
|
|
getprevious(...)
Returns the preceding sibling of this element or None. |
|
|
|
items(...)
Gets element attributes, as a sequence. |
|
|
|
keys(...)
Gets a list of attribute names. |
|
|
|
values(...)
Gets element attributes, as a sequence. |
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__init__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__str__
|