Extract all children.
(self)
| 611 | return self._getAttrMap().get(key, default) |
| 612 | |
| 613 | def clear(self): |
| 614 | """Extract all children.""" |
| 615 | for child in self.contents[:]: |
| 616 | child.extract() |
| 617 | |
| 618 | def index(self, element): |
| 619 | for i, child in enumerate(self.contents): |