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

Method trace_info

Lib/tkinter/__init__.py:492–496  ·  view source on GitHub ↗

Return all trace callback information.

(self)

Source from the content-addressed store, hash-verified

490 pass
491
492 def trace_info(self):
493 """Return all trace callback information."""
494 splitlist = self._tk.splitlist
495 return [(splitlist(k), v) for k, v in map(splitlist,
496 splitlist(self._tk.call('trace', 'info', 'variable', self._name)))]
497
498 def trace_variable(self, mode, callback):
499 """Define a trace callback for the variable.

Callers 4

trace_removeMethod · 0.95
trace_vdeleteMethod · 0.95
test_traceMethod · 0.95
detachMethod · 0.80

Calls 1

callMethod · 0.45

Tested by 1

test_traceMethod · 0.76