在cython代码

时间:2015-07-07 13:11:31

标签: cython pylint pep8 flake8

有没有办法将pep8用于cython文件?

例如,

pep8不适用于运营商。

getline(& line)

产生错误:

E225 missing whitespace around operator

现在,如果我尝试修复它并运行它:

getline( & line)

产生错误:

 E201 whitespace after '('

1 个答案:

答案 0 :(得分:4)

神经网络库Chainer为Cython提供了一个非常方便的flake8 config

[flake8]
filename = *.pyx,*.px*
exclude = .eggs,*.egg,build
ignore = E901,E225,E226,E227