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

Method call_callbacks

Lib/idlelib/window.py:45–51  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

43 pass
44
45 def call_callbacks(self):
46 for callback in self.callbacks:
47 try:
48 callback()
49 except:
50 t, v, tb = sys.exc_info()
51 print("warning: callback failed in WindowList", t, ":", v)
52
53
54registry = WindowList()

Callers 2

deleteMethod · 0.95

Calls 1

callbackFunction · 0.50

Tested by

no test coverage detected