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

Method trace_info

Lib/tkinter/__init__.py:486–490  ·  view source on GitHub ↗

Return all trace callback information.

(self)

Source from the content-addressed store, hash-verified

484 pass
485
486 def trace_info(self):
487 """Return all trace callback information."""
488 splitlist = self._tk.splitlist
489 return [(splitlist(k), v) for k, v in map(splitlist,
490 splitlist(self._tk.call('trace', 'info', 'variable', self._name)))]
491
492 def trace_variable(self, mode, callback):
493 """Define a trace callback for the variable.

Callers 2

trace_removeMethod · 0.95
trace_vdeleteMethod · 0.95

Calls 1

callMethod · 0.45

Tested by

no test coverage detected