class documentation

class _LeaveVisitor(_EnterVisitor): (source)

View In Hierarchy

Tests leave() by discarding names recorded by enter().

Method leave_Name Undocumented

Inherited from _EnterVisitor:

Method __init__ Undocumented
Method enter_Name Undocumented
Instance Variable names Undocumented

Inherited from BaseVisitor (via _EnterVisitor):

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 leave_Name(self, node): (source)

Undocumented