(self)
| 392 | self.check_ast_roundtrip("{'a', 'b', 'c'}") |
| 393 | |
| 394 | def test_empty_set(self): |
| 395 | self.assertASTEqual( |
| 396 | ast.parse(ast.unparse(ast.Set(elts=[]))), |
| 397 | ast.parse('{*()}') |
| 398 | ) |
| 399 | |
| 400 | def test_set_comprehension(self): |
| 401 | self.check_ast_roundtrip("{x for x in range(5)}") |
nothing calls this directly
no test coverage detected