예제 #1
0
 def __init__(self, tree):
     self.graph = pyassem.PyFlowGraph("<module>", tree.filename)
     self.futures = future.find_futures(tree)
     self.__super_init()
     walk(tree, self)
예제 #2
0
 def __init__(self, tree):
     self.graph = pyassem.PyFlowGraph("<module>", tree.filename)
     self.futures = future.find_futures(tree)
     pycodegen.ModuleCodeGenerator._ModuleCodeGenerator__super_init(self)
     self.__class__.FunctionGen = _preppy_FunctionCodeGenerator
     pycodegen.walk(tree, self)
예제 #3
0
 def __init__(self, tree):
     self.graph = pyassem.PyFlowGraph("<module>", tree.filename)
     self.futures = future.find_futures(tree)
     pycodegen.ModuleCodeGenerator._ModuleCodeGenerator__super_init(self)
     self.__class__.FunctionGen = _preppy_FunctionCodeGenerator
     pycodegen.walk(tree, self)
예제 #4
0
import imp
예제 #5
0
import imp