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

Method unbind_class

Lib/tkinter/__init__.py:1592–1595  ·  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

1590 return self._root()._bind(('bind', className), sequence, func, add, True)
1591
1592 def unbind_class(self, className, sequence):
1593 """Unbind for all widgets with bindtag CLASSNAME for event SEQUENCE
1594 all functions."""
1595 self._root()._unbind(('bind', className, sequence))
1596
1597 def mainloop(self, n=0):
1598 """Call the mainloop of Tk."""

Callers

nothing calls this directly

Calls 2

_rootMethod · 0.95
_unbindMethod · 0.80

Tested by

no test coverage detected