class documentation

Visit a project by traversing the locals dictionary. * visit_<class name> on entering a node, where class name is the class of the node in lower case * leave_<class name> on leaving a node, where class name is the class of the node in lower case

Method __init__ Undocumented
Method get_callbacks Get callbacks from handler for the visited node.
Method visit Launch the visit starting from the given node.
Instance Variable _cache Undocumented
Instance Variable _visited Undocumented
def get_callbacks(self, node: nodes.NodeNG) -> _CallbackTupleT: (source)

Get callbacks from handler for the visited node.

def visit(self, node: nodes.NodeNG) -> Any: (source)

Launch the visit starting from the given node.

Undocumented