pyflakes icon indicating copy to clipboard operation
pyflakes copied to clipboard

a faster smurfier pyflakes fork using _ast instead of compiler

Results 19 pyflakes issues
Sort by recently updated
recently updated
newest added

While `_` is commonly used to name a "throw-away variable", it doesn't work for codebases that use gettext and assign it to a variable called `_`. In such cases, "throw-away...

Change set kevinw/pyflakes@0e136d0ff5c161031bec backed out kevinw/pyflakes@0c808dba2958ea68e1a4.

adds ability to use "python setup.py develop"

This is an exploratory change to allow pyflakes to ignore certain symbols that are defined at runtime, and are implicitly in scope for the given file, that pyflakes can't be...

One of my uses cases for pyflakes is integrating into a testing/build system. As a result i found it necessary to have a way of skipping certain things that I'm...

PEP 443 (http://www.python.org/dev/peps/pep-0443/) introduces single distapched functions definitions uses several decarated functions with underscore as name. pyflakes treats second _ function declaration as 'F811 redifinision of unused _ from line...

I use pyflakes-vim plugin to invoke pyflakes module for checking task. It throws exception when bumping into some invalid python syntax segment as follows: in File "/usr/lib/python/sit-packages/pyflakes/messages.py", line 9, in...

This fork of pyflakes works better than the original[1], but only the original is available on [http://pypi.python.org/pypi](http://pypi.python.org/pypi). It would be great to see the minor version incremented and the package...

`__path__` is a built-in attribute of all Python modules in a package so should not be flagged as undefined by pyflakes. See http://docs.python.org/tutorial/modules.html#packages-in-multiple-directories For example, create a directory called `foo/`...

In the example: class SomeClass(object): def some_method(self): return self.no_such_attr ``` def some_other_method(self): return self.no_such_method() ``` There is no error on line 3 nor on line 6 but running this code...