我尝试在需要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
答案 0 :(得分:2)
从您的回溯中,您似乎正在导入sys
。在这种情况下,pythran试图获取导入模块的源代码来编译它。由于sys
是内置模块,因此失败。