[Python-checkins] python/dist/src/Lib/compiler visitor.py,1.9,1.10
jhylton@sourceforge.net
jhylton@sourceforge.net
2002年4月18日 09:02:54 -0700
Update of /cvsroot/python/python/dist/src/Lib/compiler
In directory usw-pr-cvs1:/tmp/cvs-serv27384
Modified Files:
visitor.py
Log Message:
Remove out-of-date explanation in doc strings,
as reported by Eric C. Newton.
Index: visitor.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/compiler/visitor.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** visitor.py 18 Oct 2001 21:57:37 -0000 1.9
--- visitor.py 18 Apr 2002 16:02:48 -0000 1.10
***************
*** 27,33 ****
the walk has occurred.) The ASTVisitor modifies the visitor
argument by adding a visit method to the visitor; this method can
! be used to visit a particular child node. If the visitor method
! returns a true value, the ASTVisitor will not traverse the child
! nodes.
XXX The interface for controlling the preorder walk needs to be
--- 27,31 ----
the walk has occurred.) The ASTVisitor modifies the visitor
argument by adding a visit method to the visitor; this method can
! be used to visit a particular child node.
XXX The interface for controlling the preorder walk needs to be