如何让 Pyflakes 忽略语句?
我们的很多模块都以: try: import json except ImportError: from django.utils import simplejson as json # Python 2.4 fallback. ...这是整个文件…
PyFlakes 用于 JavaScript?
有没有这样的 Javascript 独立包,比如 Python 的 PyFlakes?我看到有 JsLint,但看起来它依赖于一些外部的东西,比如 Rhino。 我更喜欢像 PyFlakes …
pylint bug - E1101 &使用 @property + 时的 E0102 @foo.setter
我注意到 pylint 不能很好地处理以下情况: @property def foo(self): return self._bar.foo @foo.setter def foo(self, foo_val): self._bar.foo = f…
使用 PyFlakes 和 del 运算符
在 Python 函数中使用 del 时,我从 PyFlakes 收到误报,告诉我该变量未定义。 def foo(bar): # what if it's ham? eww if bar == 'ham': del bar ret…
Windows 上 emacs 中的 pyflakes 问题
我点击了此链接此处尝试在 Windows 上为 python dev 设置 emacs。尽管一切看起来都很好,但 pyflakes 正在制造问题并且不给我语法检查。每次我打开“.…
我将如何开始将 pyflakes 与 Hudson 集成
我们使用 Hudson 与 Violations 插件进行持续集成,该插件解析 pylint 的输出。然而,pylint 有点过于严格,并且难以配置。我们更愿意使用 pyflakes,…
如何使用 Python 的 Emacs Flymake 模式以及 pyflakes 和 pylint 检查代码?
为了在 python 模式下检查代码,我使用 Flymake 和 pyflakes 我也想检查代码风格(pep8)与 pylint (与 pyflakes 位于同一页面上的说明) 此解决方案…
- 共 1 页
- 1