(self, node)
| 474 | self._for_helper("for ", node) |
| 475 | |
| 476 | def visit_AsyncFor(self, node): |
| 477 | self._for_helper("async for ", node) |
| 478 | |
| 479 | def _for_helper(self, fill, node): |
| 480 | self.fill(fill, allow_semicolon=False) |
nothing calls this directly
no test coverage detected