コード例 #1
0
ファイル: cpu.py プロジェクト: matteobachetti/numba
 def build_set(self, builder, set_type, items):
     """
     Build a set from the Numba *set_type* and its initial *items*.
     """
     return setobj.build_set(self, builder, set_type, items)
コード例 #2
0
ファイル: cpu.py プロジェクト: stonebig/numba
 def build_set(self, builder, set_type, items):
     """
     Build a set from the Numba *set_type* and its initial *items*.
     """
     from numba.cpython import setobj
     return setobj.build_set(self, builder, set_type, items)