Unbind for all widgets with bindtag CLASSNAME for event SEQUENCE all functions.
(self, className, sequence)
| 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.""" |
no test coverage detected