(real intent is to test out rsync install)
return meth(node)
class ExampleASTVisitor(ASTVisitor):
- """Prints examples of the nodes that aren't visited"""
+ """Prints examples of the nodes that aren't visited
+
+ This visitor-driver is only useful for development, when it's
+ helpful to develop a visitor incremently, and get feedback on what
+ you still have to do.
+ """
examples = {}
def dispatch(self, node):
return meth(node)
class ExampleASTVisitor(ASTVisitor):
- """Prints examples of the nodes that aren't visited"""
+ """Prints examples of the nodes that aren't visited
+
+ This visitor-driver is only useful for development, when it's
+ helpful to develop a visitor incremently, and get feedback on what
+ you still have to do.
+ """
examples = {}
def dispatch(self, node):