Return all trace callback information.
(self)
| 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. |
no test coverage detected