MCPcopy Index your code
hub / github.com/RustPython/RustPython / destroy

Method destroy

Lib/tkinter/ttk.py:1641–1647  ·  view source on GitHub ↗

Destroy this widget and its associated variable.

(self)

Source from the content-addressed store, hash-verified

1639
1640
1641 def destroy(self):
1642 """Destroy this widget and its associated variable."""
1643 try:
1644 del self._variable
1645 except AttributeError:
1646 pass
1647 super().destroy()

Callers 1

destroyMethod · 0.45

Calls 1

superClass · 0.85

Tested by

no test coverage detected