class documentation

Base visitor for all typed_ast visitors. - Reraises ParseError with position information. - Handles literal constants - Has an optional Definitions member

Method __init__ Undocumented
Method enter Does a pre-order traversal of the AST.
Method leave Called after visit() to do any cleanup that enter() needs.
Method visit_Bytes Undocumented
Method visit_Constant Undocumented
Method visit_Ellipsis Undocumented
Method visit_NameConstant Undocumented
Method visit_Num Undocumented
Method visit_Str Undocumented
Method visit_UnaryOp Undocumented
Instance Variable defs Undocumented
Instance Variable filename Undocumented
Instance Variable src_code Undocumented
Instance Variable subscripted Undocumented
Method _call_visitor Undocumented

Inherited from BaseVisitor:

Method generic_visit Called when no visit function is found for a node type.
Method visit Does a post-order traversal of the AST.
Method _children Children to recurse over.
Instance Variable _ast Undocumented
Instance Variable _node_children Undocumented
def enter(self, node): (source)

Does a pre-order traversal of the AST.

def leave(self, node): (source)

Called after visit() to do any cleanup that enter() needs.

def visit_Bytes(self, node): (source)

Undocumented

def visit_Constant(self, node): (source)

Undocumented

def visit_Ellipsis(self, node): (source)

Undocumented

def visit_NameConstant(self, node): (source)

Undocumented

def visit_Num(self, node): (source)

Undocumented

def visit_Str(self, node): (source)

Undocumented

def visit_UnaryOp(self, node): (source)

Undocumented

Undocumented

filename = (source)

Undocumented

src_code = (source)

Undocumented

subscripted: list = (source)

Undocumented

def _call_visitor(self, node): (source)