我有一个简单的test.py文件,我想用Cython添加类型.为了保持python解释器兼容,我使用纯python模式.我补充说:
import cython
然后尝试通过以下方式定义类型:
d = cython.declare(cython.dict)
那么Eclipse中的python解释器在这一行上给出了一个错误:
AttributeError: ‘module’ object has no attribute ‘dict’
我错过了什么?当我将test.py重命名为test.pyx时,它可以工作,但是我想将它保存为.py文件,以便能够将其导入其他python文件中.
最佳答案
只需使用d = cython.declare(dict)
原文链接:https://www.f2er.com/python/438509.html