Questions tagged «pyflakes»

2
PyLint,PyChecker或PyFlakes?[关闭]
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实,参考或专业知识的支持,但是这个问题可能会引起辩论,争论,民意调查或扩展讨论。如果您认为此问题可以解决并且可以重新提出,请访问帮助中心以获取指导。 7年前关闭。 我想在以下工具上获得一些反馈: 特征; 适应性 易用性和学习曲线。

7
我如何让Pyflakes忽略声明?
我们的许多模块都始于: try: import json except ImportError: from django.utils import simplejson as json # Python 2.4 fallback. ...这是整个文件中唯一的Pyflakes警告: foo/bar.py:14: redefinition of unused 'json' from line 12 我如何让Pyflakes忽略这一点? (通常我会去阅读文档,但是链接断开了。如果没有人回答,我只会阅读源代码。)
137 python  pyflakes 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.