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)
| 372 | return self.attrib.keys() |
| 373 | |
| 374 | def items(self): |
| 375 | """Get element attributes as a sequence. |
| 376 | |
| 377 | The attributes are returned in arbitrary order. Equivalent to |
| 378 | attrib.items(). |
| 379 | |
| 380 | Return a list of (name, value) tuples. |
| 381 | |
| 382 | """ |
| 383 | return self.attrib.items() |
| 384 | |
| 385 | def iter(self, tag=None): |
| 386 | """Create tree iterator. |
no outgoing calls
no test coverage detected