Get element attributes as a sequence. The attributes are returned in arbitrary order. Equivalent to attrib.items(). Return a list of (name, value) tuples.
(self)
| 364 | return self.attrib.keys() |
| 365 | |
| 366 | def items(self): |
| 367 | """Get element attributes as a sequence. |
| 368 | |
| 369 | The attributes are returned in arbitrary order. Equivalent to |
| 370 | attrib.items(). |
| 371 | |
| 372 | Return a list of (name, value) tuples. |
| 373 | |
| 374 | """ |
| 375 | return self.attrib.items() |
| 376 | |
| 377 | def iter(self, tag=None): |
| 378 | """Create tree iterator. |
no outgoing calls