edit a doc string
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 14 Feb 2000 23:57:56 +0000 (23:57 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 14 Feb 2000 23:57:56 +0000 (23:57 +0000)
(real intent is to test out rsync install)

Lib/compiler/pycodegen.py
Tools/compiler/compiler/pycodegen.py

index 51ab9bdad7c69b23588b7751cea0b97e1c5a8871..4f8d8247ce706558157f1a8a550d42b24ce42838 100644 (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):
index 51ab9bdad7c69b23588b7751cea0b97e1c5a8871..4f8d8247ce706558157f1a8a550d42b24ce42838 100644 (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):