class documentation

class _VisitOrderVisitor(visitor.BaseVisitor): (source)

View In Hierarchy

Tests visit order.

Method __init__ Undocumented
Method visit_FunctionDef Undocumented
Instance Variable funcs Undocumented

Inherited from BaseVisitor:

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 __init__(self, *args, **kwargs): (source)
def visit_FunctionDef(self, node): (source)

Undocumented

Undocumented