Tagged Questions

Similar to the C language source code analyzer lint, Pyflakes performs similar function on Python source code. It can be used to check for simple errors like misplaced quotes, code indentation inconsistencies, syntax errors, referenced but undeclared variables, unused imported modules, etc. A very ...

learn more… | top users | synonyms

64
votes
2answers
10k views

PyLint, PyChecker or PyFlakes?

I would like to get some feedback on these tools on : features; adaptability; ease of use and learning curve.
4
votes
2answers
544 views

How would I start integrating pyflakes with Hudson

We use Hudson for continuous integration with the Violations Plugin which parses our output from pylint. However, pylint is a bit too strict, and hard to configure. What we'd rather use is pyflakes ...
3
votes
3answers
296 views

Can flymake's temporary file be created in the system's temporary directory?

I am currently using the following code to hook up flymake and Pyflakes in emacs: (defun flymake-create-temp-in-system-tempdir (filename prefix) (make-temp-file (or prefix "flymake"))) and then I ...
3
votes
2answers
563 views

How to make Vim error list permanent using PyFlakes?

I want to use pep8 as my makeprg in order to check and fix my code compliance to PEP8 (Style guide for python code). I used the command :set makeprg=pep8\ --repeat\ %, and when I do :make it works, ...
3
votes
3answers
345 views

pylint bug - E1101 & E0102 upon use of @property + @foo.setter

I noticed pylint doesn't handle well the case of: @property def foo(self): return self._bar.foo @foo.setter def foo(self, foo_val): self._bar.foo = foo_val Though it's a perfectly valid case ...
2
votes
2answers
244 views

Vim: Pyflakes Conflicting With Vimgrep/Grep

I just recently installed Pyflakes Vim plugin. It works very fine and is very helpful. Unfortunately it uses the error list in case there is an error. So if I make a search-in-files using Vimgrep or ...
1
vote
1answer
467 views

How do I get Pyflakes to ignore a statement?

A lot of our modules start with: try: import json except ImportError: from django.utils import simplejson as json # Python 2.4 fallback. ...and it's the only Pyflakes warning in the entire ...
1
vote
2answers
104 views

PyFlakes for Javascript?

Is there any such standalone package for Javascript, like PyFlakes for Python? I see there is JsLint, but it looks like it depends on some external things like Rhino. I prefer something ...
0
votes
2answers
181 views

How do I disable pyflakes-vim for a particular file?

I have some autogenerated python files that are extremely large (long mathematical equations). Vim slows to a crawl when I open them for editing because I have pyflakes-vim installed. I'd like to be ...
0
votes
3answers
313 views

Errors when running vim with the pyflakes plugin

I'm playing with the pyflakes plugin for vim and now when I open a python file I get the error messages in the screenshot here Any ideas how to fix this? Thanks in advance...
0
votes
2answers
131 views

Is there something like PyFlakes for PHP?

Pretty straight forward question. I'm quite happy with my simple text editor but sometimes it'd be nice to run something like PyFlakes on my code before running to check for any obvious errors like ...
0
votes
1answer
209 views

Using PyFlakes and the del operator

When making use of del in a Python function, I'm getting false positives from PyFlakes telling me that the variable is undefined. def foo(bar): # what if it's ham? eww if bar == 'ham': ...