(self, element)
| 585 | child.extract() |
| 586 | |
| 587 | def index(self, element): |
| 588 | for i, child in enumerate(self.contents): |
| 589 | if child is element: |
| 590 | return i |
| 591 | raise ValueError("Tag.index: element not in tag") |
| 592 | |
| 593 | def has_key(self, key): |
| 594 | return self._getAttrMap().has_key(key) |
no outgoing calls
no test coverage detected