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

Method unbind_class

Lib/tkinter/__init__.py:1610–1613  ·  view source on GitHub ↗

Unbind for all widgets with bindtag CLASSNAME for event SEQUENCE all functions.

(self, className, sequence)

Source from the content-addressed store, hash-verified

1608 return self._root()._bind(('bind', className), sequence, func, add, True)
1609
1610 def unbind_class(self, className, sequence):
1611 """Unbind for all widgets with bindtag CLASSNAME for event SEQUENCE
1612 all functions."""
1613 self._root()._unbind(('bind', className, sequence))
1614
1615 def mainloop(self, n=0):
1616 """Call the mainloop of Tk."""

Callers 1

fixb2contextFunction · 0.80

Calls 2

_rootMethod · 0.95
_unbindMethod · 0.80

Tested by

no test coverage detected