class documentation

class _VisitReplaceVisitor(visitor.BaseVisitor): (source)

View In Hierarchy

Tests visit()'s node replacement functionality.

Method visit_Name Undocumented

Inherited from BaseVisitor:

Method __init__ Undocumented
Method enter Does a pre-order traversal of the AST.
Method generic_visit Called when no visit function is found for a node type.
Method leave Called after visit() to do any cleanup that enter() needs.
Method visit Does a post-order traversal of the AST.
Method _call_visitor Undocumented
Method _children Children to recurse over.
Instance Variable _ast Undocumented
Instance Variable _node_children Undocumented
def visit_Name(self, node): (source)

Undocumented