def generic_visit(self, node): for child in ast.iter_child_nodes(node): for t in self.visit(child): yield t