(self)
| 529 | "<symbol 'x': LOCAL, DEF_LOCAL|DEF_FREE_CLASS>") |
| 530 | |
| 531 | def test_symtable_entry_repr(self): |
| 532 | expected = f"<symtable entry top({self.top.get_id()}), line {self.top.get_lineno()}>" |
| 533 | self.assertEqual(repr(self.top._table), expected) |
| 534 | |
| 535 | def test_lambda(self): |
| 536 | st = symtable.symtable("lambda x: x", "?", "exec") |
nothing calls this directly
no test coverage detected