(self)
| 341 | T_ints = IntVar("T_ints") # noqa |
| 342 | |
| 343 | def test_invalid(self): |
| 344 | with self.assertRaises(TypeError): |
| 345 | T_ints = IntVar("T_ints", int) |
| 346 | with self.assertRaises(TypeError): |
| 347 | T_ints = IntVar("T_ints", bound=int) |
| 348 | with self.assertRaises(TypeError): |
| 349 | T_ints = IntVar("T_ints", covariant=True) # noqa |
| 350 | |
| 351 | |
| 352 | class LiteralTests(BaseTestCase): |