Extract all children.
(self)
| 580 | return self._getAttrMap().get(key, default) |
| 581 | |
| 582 | def clear(self): |
| 583 | """Extract all children.""" |
| 584 | for child in self.contents[:]: |
| 585 | child.extract() |
| 586 | |
| 587 | def index(self, element): |
| 588 | for i, child in enumerate(self.contents): |