Return all trace callback information. This deprecated method wraps a deprecated Tcl method removed in Tcl 9.0. Use trace_info() instead.
(self)
| 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): |