Pythran导出dict以元组为关键

时间:2016-02-06 10:55:07

标签: python dictionary pythran

我尝试在需要int数组的函数中使用Pythran,在第二个arg中使用dict作为键的ints元组和{{1}作为值:

int

通知 Pythran 有关myarray = np.array([[0, 0], [0, 1], [1, 1], [1, 2], [2, 2], [1, 3]]) dict_with_tuples_key = {(0, 1): 1, (3, 7): 1} 的正确方法是什么?:

dict

使用(int,int):int dict 我收到此错误:

#pythran export update_dict((int, int):int dict, int[][])
def update_dict(dict_with_tuples_key, myarray):
    # do something with dict_with_tuples_key and myarray
    # return and updated dict_with_tuples_key
    return dict_with_tuples_key

1 个答案:

答案 0 :(得分:2)

从您的回溯中,您似乎正在导入sys。在这种情况下,pythran试图获取导入模块的源代码来编译它。由于sys是内置模块,因此失败。