Ejemplo n.º 1
0
    def __init__(self):

        AstVisitor.__init__(self)

        self._module_stack = []
Ejemplo n.º 2
0
    def __init__(self, root_module):

        AstVisitor.__init__(self)

        self._root_module = root_module
        self._curobj = None
Ejemplo n.º 3
0
 def __init__(self, root_module):
     
     AstVisitor.__init__(self)
     
     self._root_module = root_module
     self._curobj = None
Ejemplo n.º 4
0
 def __init__(self):
     
     AstVisitor.__init__(self)
     
     self._module_stack = []
Ejemplo n.º 5
0
 def __init__(self):
     
     AstVisitor.__init__(self)
     
     self._module_path = []
     self._indent_level = 0