Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9e1cd68

Browse files
committed
edit a doc string
(real intent is to test out rsync install)
1 parent 1991ddc commit 9e1cd68

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

Lib/compiler/pycodegen.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,12 @@ def dispatch(self, node):
121121
return meth(node)
122122

123123
class ExampleASTVisitor(ASTVisitor):
124-
"""Prints examples of the nodes that aren't visited"""
124+
"""Prints examples of the nodes that aren't visited
125+
126+
This visitor-driver is only useful for development, when it's
127+
helpful to develop a visitor incremently, and get feedback on what
128+
you still have to do.
129+
"""
125130
examples = {}
126131

127132
def dispatch(self, node):

Tools/compiler/compiler/pycodegen.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,12 @@ def dispatch(self, node):
121121
return meth(node)
122122

123123
class ExampleASTVisitor(ASTVisitor):
124-
"""Prints examples of the nodes that aren't visited"""
124+
"""Prints examples of the nodes that aren't visited
125+
126+
This visitor-driver is only useful for development, when it's
127+
helpful to develop a visitor incremently, and get feedback on what
128+
you still have to do.
129+
"""
125130
examples = {}
126131

127132
def dispatch(self, node):

0 commit comments

Comments
 (0)