(self, node)
| 1053 | self._for_helper("for ", node) |
| 1054 | |
| 1055 | def visit_AsyncFor(self, node): |
| 1056 | self._for_helper("async for ", node) |
| 1057 | |
| 1058 | def _for_helper(self, fill, node): |
| 1059 | self.fill(fill) |
nothing calls this directly
no test coverage detected