(self, n: ast3.ListComp)
| 1553 | |
| 1554 | # ListComp(expr elt, comprehension* generators) |
| 1555 | def visit_ListComp(self, n: ast3.ListComp) -> ListComprehension: |
| 1556 | e = ListComprehension(self.visit_GeneratorExp(cast(ast3.GeneratorExp, n))) |
| 1557 | return self.set_line(e, n) |
| 1558 | |
| 1559 | # SetComp(expr elt, comprehension* generators) |
| 1560 | def visit_SetComp(self, n: ast3.SetComp) -> SetComprehension: |
nothing calls this directly
no test coverage detected