class documentation

class _GenericVisitVisitor(visitor.BaseVisitor): (source)

View In Hierarchy

Tests generic_visit().

Method __init__ Undocumented
Method generic_visit Called when no visit function is found for a node type.
Instance Variable nodes Undocumented

Inherited from BaseVisitor:

Method enter Does a pre-order traversal of the AST.
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 __init__(self, *args, **kwargs): (source)
def generic_visit(self, node): (source)

Called when no visit function is found for a node type.

Undocumented