pyflakes

Passive checker of Python 2 programs
  https://launchpad.net/pyflakes
  1
  1 review



Pyflakes is program to analyze Python programs and detect various errors. It works by parsing the source file, not importing it, so it is safe to use on modules with side effects. It's also much faster.

Unlike PyLint, Pyflakes checks only for logical errors in programs; it does not perform any checks on style.

This is the Python 2 command line `pyflakes` program.
Latest reviews
4
ulrich3110 11 years ago

a useful help for a good code.