(self)
| 107 | self.root.setvar(b'var\x00name', "value") |
| 108 | |
| 109 | def test_initialize(self): |
| 110 | v = Var(self.root) |
| 111 | self.assertFalse(v.side_effect) |
| 112 | v.set("value") |
| 113 | self.assertTrue(v.side_effect) |
| 114 | |
| 115 | def test_trace_old(self): |
| 116 | if tcl_version >= (9, 0): |
nothing calls this directly
no test coverage detected