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)
| 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): |