MCPcopy Index your code
hub / github.com/python/cpython / destroy

Method destroy

Lib/tkinter/ttk.py:1642–1648  ·  view source on GitHub ↗

Destroy this widget and its associated variable.

(self)

Source from the content-addressed store, hash-verified

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
1651def __getattr__(name):

Callers 6

test_widget_destroyMethod · 0.95
test_initializationMethod · 0.95
test_menuMethod · 0.95
test_trace_variableMethod · 0.95
destroyMethod · 0.45

Calls 1

superClass · 0.85

Tested by 5

test_widget_destroyMethod · 0.76
test_initializationMethod · 0.76
test_menuMethod · 0.76
test_trace_variableMethod · 0.76