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

Method unbind_all

Lib/tkinter/__init__.py:1596–1598  ·  view source on GitHub ↗

Unbind for all widgets for event SEQUENCE all functions.

(self, sequence)

Source from the content-addressed store, hash-verified

1594 return self._root()._bind(('bind', 'all'), sequence, func, add, True)
1595
1596 def unbind_all(self, sequence):
1597 """Unbind for all widgets for event SEQUENCE all functions."""
1598 self._root()._unbind(('bind', 'all', sequence))
1599
1600 def bind_class(self, className, sequence=None, func=None, add=None):
1601 """Bind to widgets with bindtag CLASSNAME at event

Callers

nothing calls this directly

Calls 2

_rootMethod · 0.95
_unbindMethod · 0.80

Tested by

no test coverage detected