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

Method trace_vinfo

Lib/tkinter/__init__.py:547–559  ·  view source on GitHub ↗

Return all trace callback information. This deprecated method wraps a deprecated Tcl method removed in Tcl 9.0. Use trace_info() instead.

(self)

Source from the content-addressed store, hash-verified

545 pass
546
547 def trace_vinfo(self):
548 """Return all trace callback information.
549
550 This deprecated method wraps a deprecated Tcl method removed
551 in Tcl 9.0. Use trace_info() instead.
552 """
553 import warnings
554 warnings.warn(
555 "trace_vinfo() is deprecated and not supported with Tcl 9; "
556 "use trace_info() instead.",
557 DeprecationWarning, stacklevel=2)
558 return [self._tk.splitlist(x) for x in self._tk.splitlist(
559 self._tk.call("trace", "vinfo", self._name))]
560
561 def __eq__(self, other):
562 if not isinstance(other, Variable):

Callers 1

test_trace_oldMethod · 0.95

Calls 3

splitlistMethod · 0.80
warnMethod · 0.45
callMethod · 0.45

Tested by 1

test_trace_oldMethod · 0.76