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

Method trace_vinfo

Lib/tkinter/__init__.py:533–541  ·  view source on GitHub ↗

Return all trace callback information. This deprecated method wraps a deprecated Tcl method that will likely be removed in the future. Use trace_info() instead.

(self)

Source from the content-addressed store, hash-verified

531 pass
532
533 def trace_vinfo(self):
534 """Return all trace callback information.
535
536 This deprecated method wraps a deprecated Tcl method that will
537 likely be removed in the future. Use trace_info() instead.
538 """
539 # TODO: Add deprecation warning
540 return [self._tk.splitlist(x) for x in self._tk.splitlist(
541 self._tk.call("trace", "vinfo", self._name))]
542
543 def __eq__(self, other):
544 if not isinstance(other, Variable):

Callers

nothing calls this directly

Calls 1

callMethod · 0.45

Tested by

no test coverage detected