(self, o: DictionaryComprehension)
| 422 | return self._visit_unsupported_expr(o) |
| 423 | |
| 424 | def visit_dictionary_comprehension(self, o: DictionaryComprehension) -> str: |
| 425 | return self._visit_unsupported_expr(o) |
| 426 | |
| 427 | def visit_generator_expr(self, o: GeneratorExpr) -> str: |
| 428 | return self._visit_unsupported_expr(o) |
nothing calls this directly
no test coverage detected