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

Method __del__

Lib/idlelib/multicall.py:104–111  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

102 self.handlerid = None
103
104 def __del__(self):
105 if self.handlerid:
106 try:
107 self.widget.unbind(self.widgetinst, self.sequence,
108 self.handlerid)
109 except tkinter.TclError as e:
110 if not APPLICATION_GONE in e.args[0]:
111 raise
112
113# An int in range(1 << len(_modifiers)) represents a combination of modifiers
114# (if the least significant bit is on, _modifiers[0] is on, and so on).

Callers

nothing calls this directly

Calls 1

unbindMethod · 0.45

Tested by

no test coverage detected