Destroy this widget and its associated variable.
(self)
| 1640 | |
| 1641 | |
| 1642 | def destroy(self): |
| 1643 | """Destroy this widget and its associated variable.""" |
| 1644 | try: |
| 1645 | del self._variable |
| 1646 | except AttributeError: |
| 1647 | pass |
| 1648 | super().destroy() |
| 1649 | |
| 1650 | |
| 1651 | def __getattr__(name): |