예제 #1
0
파일: mixedmodule.py 프로젝트: bukzor/pypy
 def __init__(self, space, w_name):
     """ NOT_RPYTHON """
     Module.__init__(self, space, w_name)
     self.lazy = True
     self.__class__.buildloaders()
     self.loaders = self.loaders.copy()    # copy from the class to the inst
     self.submodules_w = []
예제 #2
0
 def __init__(self, space, w_name):
     """ NOT_RPYTHON """
     Module.__init__(self, space, w_name)
     self.lazy = True
     self.__class__.buildloaders()
     self.loaders = self.loaders.copy()  # copy from the class to the inst
     self.submodules_w = []
예제 #3
0
 def __init__(self, space, w_name):
     Module.__init__(self, space, w_name)
     init_extra_module_attrs(space, self)
     self.lazy = True
     self.lazy_initial_values_w = {}
     self.__class__.buildloaders()
     self.loaders = self.loaders.copy()  # copy from the class to the inst
     self.submodules_w = []
예제 #4
0
 def __init__(self, space, w_name):
     """ NOT_RPYTHON """
     Module.__init__(self, space, w_name)
     self.lazy = True
     self.__class__.buildloaders()
예제 #5
0
 def __init__(self, space, w_name):
     """ NOT_RPYTHON """
     Module.__init__(self, space, w_name)
     self.lazy = True
     self.__class__.buildloaders()