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

Method unbind

Lib/idlelib/multicall.py:98–102  ·  view source on GitHub ↗
(self, triplet, func)

Source from the content-addressed store, hash-verified

96 self.bindedfuncs.append(func)
97
98 def unbind(self, triplet, func):
99 self.bindedfuncs.remove(func)
100 if not self.bindedfuncs:
101 self.widget.unbind(self.widgetinst, self.sequence, self.handlerid)
102 self.handlerid = None
103
104 def __del__(self):
105 if self.handlerid:

Callers

nothing calls this directly

Calls 2

removeMethod · 0.45
unbindMethod · 0.45

Tested by

no test coverage detected