@djangoproject · Post #299 · 17.04.2017 г., 07:54
https://pypi.python.org/pypi/pyflakes A simple program which checks Python source files for #errors. #Pyflakes analyzes programs and detects 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. Pyflakes is also faster than Pylint or Pychecker. This is largely because Pyflakes only examines the syntax tree of each file individually. As a consequence, Pyflakes is more limited in the types of things it can check. #test