edit a doc string

(real intent is to test out rsync install)
This commit is contained in:
Jeremy Hylton 2000-02-14 23:57:56 +00:00
parent 1991ddc3e1
commit 9e1cd688b5
2 changed files with 12 additions and 2 deletions

View File

@ -121,7 +121,12 @@ class ASTVisitor:
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):

View File

@ -121,7 +121,12 @@ class ASTVisitor:
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):