summaryrefslogtreecommitdiff
path: root/pyflakes/checker.py
Commit message (Expand)AuthorAgeFilesLines
...
* Improve PY2 detection w.r.t Mercurial demandimportFlorent Xicluna2013-04-211-3/+6
* Minor style cleanupFlorent Xicluna2013-04-211-8/+14
* Support checking doctests.Florent Xicluna2013-04-161-3/+45
|\
| * Refactor handleDoctests; add tests for the column offset.Florent Xicluna2013-04-051-4/+3
| * Upgrade the patch for doctests, to calculate column offset.Florent Xicluna2013-04-051-3/+46
| |\
| | * Small refactoring of the doctest checking methodFlorent Xicluna2013-02-211-10/+7
| | * Add support for doctests, contribution of Marius GedminasFlorent Xicluna2013-01-291-3/+46
* | | Use getNodeName() here tooSteven Myint2013-04-131-1/+1
* | | Avoid crash caused by missing "id" attributeSteven Myint2013-04-061-1/+1
|/ /
* | Support special locals like __tracebackhide__ for py.test.Florent Xicluna2013-04-041-7/+15
|\ \
| * | Special locals for zope.exceptions.Florent Xicluna2013-04-031-1/+1
| * | Support special locals like __tracebackhide__ for py.test.Florent Xicluna2013-03-301-7/+16
* | | Do not report redefinition when unassigning a globally imported module.Florent Xicluna2013-04-041-13/+7
|\ \ \
| * | | Do not report redefinition when unassigning a globally imported module.Florent Xicluna2013-03-301-13/+7
* | | | Do not report undefined name if it is caught by a NameError handler.Florent Xicluna2013-04-021-8/+35
|\ \ \ \
| * | | | Do not report undefined name if the code is protected with a NameError handler.Florent Xicluna2013-03-301-8/+35
| |/ / /
* | | | Add attribute Message.col to report columns offset.Florent Xicluna2013-04-011-19/+19
|\ \ \ \
| * | | | Add attribute Message.col to report the columns offset.Florent Xicluna2013-03-301-19/+19
| |/ / /
* | | | Add docstrings to some modules, copyright moved to LICENSE and setup.py.Florent Xicluna2013-03-311-3/+5
| |/ / |/| |
* | | Attribute usesLocals belongs to the FunctionScopeFlorent Xicluna2013-03-301-4/+6
* | | Use a set() for the FunctionScope 'globals' attributeFlorent Xicluna2013-03-301-3/+3
* | | Refactor the handleNode method and improve caching.Florent Xicluna2013-03-301-16/+15
* | | Fix issue with Turkish locale.Florent Xicluna2013-03-301-3/+21
|/ /
* | Do not report false redefinition of variables with list / set / dict comprehe...Florent Xicluna2013-03-061-1/+2
|\ \
| * | Do not report redefinition of variable for a variable used in a list comprehe...Florent Xicluna2013-03-061-1/+2
* | | Do not report redefinition of variable for generator expression and set / dic...Florent Xicluna2013-02-211-1/+11
|\ \ \ | |/ /
| * | Do not report redefinition of variable for generator expression and set / dic...Florent Xicluna2013-02-081-1/+11
| |/
* | Refactor the Python 2.5 compatibility code in the 'except ImportError' blockFlorent Xicluna2013-02-121-9/+11
|/
* Regression with augmented assignments.Florent Xicluna2013-01-291-1/+1
* Fix spurious redefinition warnings in conditionals.Florent Xicluna2013-01-291-23/+79
|\
| * Rename lowestCommonAncestor to getCommonAncestor.Florent Xicluna2013-01-291-7/+6
| * Improve handling of try/except/else/finally compound statements.Florent Xicluna2013-01-281-4/+13
| * Uniform docstring delimiter.Florent Xicluna2013-01-281-6/+7
| * Fix an undetected assignment in the except handler.Florent Xicluna2013-01-281-3/+3
| * Fix spurious redefinition warnings in conditionals. Patch by Marcin Cieślak.Florent Xicluna2013-01-251-15/+62
* | Don't issue Unused Variable warning when using locals() in current scope.Florent Xicluna2013-01-291-0/+5
|\ \
| * | Do not warn about unused variable when using locals() in current scope. Patch...Florent Xicluna2013-01-251-0/+5
| |/
* | Support specifying additional built-ins in Checker constructor.Florent Xicluna2013-01-291-2/+5
|\ \
| * | Support specifying additional built-ins in Checker constructor.Florent Xicluna2013-01-281-2/+5
* | | Fixes for Python 3: annotations, metaclass and keyword-only arguments.Florent Xicluna2013-01-281-28/+40
|/ /
* | Do not report undefined name in __all__ if import * is used.Florent Xicluna2013-01-271-1/+1
* | Method Scope.__init__ is not needed.Florent Xicluna2013-01-271-3/+0
* | Rename attribute dead_scopes to deadScopes.Florent Xicluna2013-01-271-4/+4
|/
* Review the case of decorators for Python 2.5Florent Xicluna2013-01-251-9/+6
* Merge the patch for RedefinedInListComp from pyflakes-ast branchFlorent Xicluna2013-01-251-1/+15
* Re-order Checker.addBinding method.Florent Xicluna2013-01-251-31/+31
* More tests for Python 3 and add missing handlers for BYTES, STARRED, YIELDFRO...Florent Xicluna2013-01-251-4/+5
* Use the @property decorator.Florent Xicluna2013-01-251-1/+1
* Apply consistent naming for Checker methods.Florent Xicluna2013-01-251-5/+5
* Remove some extra blank lines, part of Twisted coding standard.Florent Xicluna2013-01-251-46/+21