Literals can be indexed into
(self)
| 28 | self.assertMatchesStdlib("set()") |
| 29 | |
| 30 | def test_indexing(self): |
| 31 | """Literals can be indexed into""" |
| 32 | self.assertEqual(simple_eval("[1,2][0]"), 1) |
| 33 | |
| 34 | def test_name_lookup(self): |
| 35 | """Names can be looked up in a namespace""" |
nothing calls this directly
no test coverage detected