(self, e: AwaitExpr)
| 856 | self.add_iter_dependency(e.expr) |
| 857 | |
| 858 | def visit_await_expr(self, e: AwaitExpr) -> None: |
| 859 | super().visit_await_expr(e) |
| 860 | self.add_attribute_dependency_for_expr(e.expr, "__await__") |
| 861 | |
| 862 | # Helpers |
| 863 |
nothing calls this directly
no test coverage detected