comparison vim/vimfiles/bundle/pyflakes-vim/ftplugin/python/pyflakes/NEWS.txt @ 8:097c95760fd0

Added pyflakes-vim plugin support.
author Brian Neal <bgneal@gmail.com>
date Sun, 29 Apr 2012 16:30:44 -0500
parents
children
comparison
equal deleted inserted replaced
7:86e0ac713642 8:097c95760fd0
1 0.4.0 (2009-11-25):
2 - Fix reporting for certain SyntaxErrors which lack line number
3 information.
4 - Check for syntax errors more rigorously.
5 - Support checking names used with the class decorator syntax in versions
6 of Python which have it.
7 - Detect local variables which are bound but never used.
8 - Handle permission errors when trying to read source files.
9 - Handle problems with the encoding of source files.
10 - Support importing dotted names so as not to incorrectly report them as
11 redefined unused names.
12 - Support all forms of the with statement.
13 - Consider static `__all__` definitions and avoid reporting unused names
14 if the names are listed there.
15 - Fix incorrect checking of class names with respect to the names of their
16 bases in the class statement.
17 - Support the `__path__` global in `__init__.py`.
18
19 0.3.0 (2009-01-30):
20 - Display more informative SyntaxError messages.
21 - Don't hang flymake with unmatched triple quotes (only report a single
22 line of source for a multiline syntax error).
23 - Recognize __builtins__ as a defined name.
24 - Improve pyflakes support for python versions 2.3-2.5
25 - Support for if-else expressions and with statements.
26 - Warn instead of error on non-existant file paths.
27 - Check for __future__ imports after other statements.
28 - Add reporting for some types of import shadowing.
29 - Improve reporting of unbound locals