Remove out-of-date explanation in doc strings,

as reported by Eric C. Newton.
This commit is contained in:
Jeremy Hylton 2002-04-18 16:02:48 +00:00
parent a454857633
commit 3b05c8ee4a
1 changed files with 1 additions and 3 deletions

View File

@ -26,9 +26,7 @@ class ASTVisitor:
the order during a postorder walk, because it is called _after_ the order during a postorder walk, because it is called _after_
the walk has occurred.) The ASTVisitor modifies the visitor the walk has occurred.) The ASTVisitor modifies the visitor
argument by adding a visit method to the visitor; this method can argument by adding a visit method to the visitor; this method can
be used to visit a particular child node. If the visitor method be used to visit a particular child node.
returns a true value, the ASTVisitor will not traverse the child
nodes.
XXX The interface for controlling the preorder walk needs to be XXX The interface for controlling the preorder walk needs to be
re-considered. The current interface is convenient for visitors re-considered. The current interface is convenient for visitors