(self, n: ast3.SetComp)
| 1558 | |
| 1559 | # SetComp(expr elt, comprehension* generators) |
| 1560 | def visit_SetComp(self, n: ast3.SetComp) -> SetComprehension: |
| 1561 | e = SetComprehension(self.visit_GeneratorExp(cast(ast3.GeneratorExp, n))) |
| 1562 | return self.set_line(e, n) |
| 1563 | |
| 1564 | # DictComp(expr key, expr value, comprehension* generators) |
| 1565 | def visit_DictComp(self, n: ast3.DictComp) -> DictionaryComprehension: |
nothing calls this directly
no test coverage detected