You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nkoehring 28b93a3d65 2012-10-26 02:30:01 12 years ago
..
bin 2012-10-26 02:30:01 12 years ago
pyflakes 2012-10-26 02:30:01 12 years ago
LICENSE 2012-10-26 02:30:01 12 years ago
README.rst 2012-10-26 02:30:01 12 years ago
setup.py 2012-10-26 02:30:01 12 years ago

README.rst

pyflakes
========

This version of PyFlakes_ has been improved to use Python's newer ``ast``
module, instead of ``compiler``. So code checking happens faster, and will stay
up to date with new language changes.

.. _PyFlakes: http://http://www.divmod.org/trac/wiki/DivmodPyflakes

TODO
----

Importing several modules from the same package results in unnecessary warnings:

::

    import a.b
    import a.c # Redefinition of unused "a" from line 1

The following construct for defining a function differently depending on some
condition results in a redefinition warning:

::

    if some_condition:
        def foo(): do_foo()
    else:
        def foo(): do_bar() # redefinition of function 'foo' from line 2

IDE Integration
---------------

* vim: pyflakes-vim_

.. _pyflakes-vim: http://github.com/kevinw/pyflakes-vim