def __init__(self): AstVisitor.__init__(self) self._module_stack = []
def __init__(self, root_module): AstVisitor.__init__(self) self._root_module = root_module self._curobj = None
def __init__(self): AstVisitor.__init__(self) self._module_path = [] self._indent_level = 0