Extract all children.
(self)
| 594 | return self._getAttrMap().get(key, default) |
| 595 | |
| 596 | def clear(self): |
| 597 | """Extract all children.""" |
| 598 | for child in self.contents[:]: |
| 599 | child.extract() |
| 600 | |
| 601 | def index(self, element): |
| 602 | for i, child in enumerate(self.contents): |