(self, n: ast3.Set)
| 1548 | |
| 1549 | # Set(expr* elts) |
| 1550 | def visit_Set(self, n: ast3.Set) -> SetExpr: |
| 1551 | e = SetExpr(self.translate_expr_list(n.elts)) |
| 1552 | return self.set_line(e, n) |
| 1553 | |
| 1554 | # ListComp(expr elt, comprehension* generators) |
| 1555 | def visit_ListComp(self, n: ast3.ListComp) -> ListComprehension: |
nothing calls this directly
no test coverage detected