Return all trace callback information.
(self)
| 490 | pass |
| 491 | |
| 492 | def trace_info(self): |
| 493 | """Return all trace callback information.""" |
| 494 | splitlist = self._tk.splitlist |
| 495 | return [(splitlist(k), v) for k, v in map(splitlist, |
| 496 | splitlist(self._tk.call('trace', 'info', 'variable', self._name)))] |
| 497 | |
| 498 | def trace_variable(self, mode, callback): |
| 499 | """Define a trace callback for the variable. |