(self, expr: GeneratorExpr)
| 6382 | self.analyze_comp_for_2(expr) |
| 6383 | |
| 6384 | def visit_generator_expr(self, expr: GeneratorExpr) -> None: |
| 6385 | with self.enter(expr): |
| 6386 | self.analyze_comp_for(expr) |
| 6387 | expr.left_expr.accept(self) |
| 6388 | self.analyze_comp_for_2(expr) |
| 6389 | |
| 6390 | def analyze_comp_for(self, expr: GeneratorExpr | DictionaryComprehension) -> None: |
| 6391 | """Analyses the 'comp_for' part of comprehensions (part 1). |
nothing calls this directly
no test coverage detected