Exemplo n.º 1
0
 def build_list(self, builder, list_type, items):
     """
     Build a list from the Numba *list_type* and its initial *items*.
     """
     return listobj.build_list(self, builder, list_type, items)
Exemplo n.º 2
0
 def build_list(self, builder, list_type, items):
     """
     Build a list from the Numba *list_type* and its initial *items*.
     """
     from numba.cpython import listobj
     return listobj.build_list(self, builder, list_type, items)