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