Cython纯python模式

时间:2016-02-23 23:01:26

标签: python cython

我有一个简单的test.py文件,我希望使用Cython添加类型。为了保持python解释器兼容,我使用纯python模式。我补充说:

import cython

然后尝试通过以下方式定义类型:

d = cython.declare(cython.dict)

然后Eclipse中的python解释器在这一行上给出了一个错误:

  

AttributeError:' module'对象没有属性' dict'

我错过了什么?当我将test.py重命名为test.pyx时,它可以工作,但是我想将它保存为.py文件,以便能够将其导入其他python文件。

1 个答案:

答案 0 :(得分:3)

只需使用d = cython.declare(dict)

即可