(self)
| 182 | self.assertRaises(TclError,tcl.unsetvar,'a') |
| 183 | |
| 184 | def get_integers(self): |
| 185 | return (0, 1, -1, |
| 186 | 2**31-1, -2**31, 2**31, -2**31-1, |
| 187 | 2**63-1, -2**63, 2**63, -2**63-1, |
| 188 | 2**1000, -2**1000) |
| 189 | |
| 190 | def test_getint(self): |
| 191 | tcl = self.interp.tk |
no outgoing calls
no test coverage detected