コード例 #1
0
ファイル: mapdict.py プロジェクト: sota/pypy-old
 def __init__(self, space, strategy, dictimplementation):
     BaseKeyIterator.__init__(self, space, strategy, dictimplementation)
     w_obj = strategy.unerase(dictimplementation.dstorage)
     self.w_obj = w_obj
     self.orig_map = self.curr_map = w_obj._get_mapdict_map()
コード例 #2
0
ファイル: mapdict.py プロジェクト: yuyichao/pypy
 def __init__(self, space, strategy, dictimplementation):
     BaseKeyIterator.__init__(self, space, strategy, dictimplementation)
     w_obj = strategy.unerase(dictimplementation.dstorage)
     self.w_obj = w_obj
     self.orig_map = self.curr_map = w_obj._get_mapdict_map()
コード例 #3
0
ファイル: mapdict.py プロジェクト: mozillazg/pypy
 def __init__(self, space, strategy, w_dict):
     BaseKeyIterator.__init__(self, space, strategy, w_dict)
     self._init(strategy, w_dict)
コード例 #4
0
ファイル: mapdict.py プロジェクト: SeraphRoy/PyPy-Functional
 def __init__(self, space, strategy, w_dict):
     BaseKeyIterator.__init__(self, space, strategy, w_dict)
     self._init(strategy, w_dict)