コード例 #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
ファイル: mixedmodule.py プロジェクト: sota/pypy-old
 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
ファイル: mixedmodule.py プロジェクト: griels/pypy-sc
 def __init__(self, space, w_name):
     """ NOT_RPYTHON """
     Module.__init__(self, space, w_name)
     self.lazy = True
     self.__class__.buildloaders()
コード例 #5
0
ファイル: mixedmodule.py プロジェクト: camillobruni/pygirl
 def __init__(self, space, w_name):
     """ NOT_RPYTHON """
     Module.__init__(self, space, w_name)
     self.lazy = True
     self.__class__.buildloaders()