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

Method unbind_all

Lib/tkinter/__init__.py:1578–1580  ·  view source on GitHub ↗

Unbind for all widgets for event SEQUENCE all functions.

(self, sequence)

Source from the content-addressed store, hash-verified

1576 return self._root()._bind(('bind', 'all'), sequence, func, add, True)
1577
1578 def unbind_all(self, sequence):
1579 """Unbind for all widgets for event SEQUENCE all functions."""
1580 self._root()._unbind(('bind', 'all', sequence))
1581
1582 def bind_class(self, className, sequence=None, func=None, add=None):
1583 """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