summaryrefslogtreecommitdiff
path: root/pyflakes/checker.py
Commit message (Expand)AuthorAgeFilesLines
* Process function scope variable annotations (#88)Jakub Stasiak2017-01-221-8/+1
* Enable support for PEP 526 annotated assignments (#84)Łukasz Langa2017-01-061-0/+18
* Fix format string checking (#80)Jared Garst2016-09-081-1/+1
* Point URLs to PyCQA (#79)Ville Skyttä2016-09-021-1/+1
* Fix typos (#77)Jakub Wilk2016-07-271-2/+2
* Check for duplicate dictionary keys (#72)geokala2016-07-251-1/+100
* Fix "continue" and "break" checks ignoring py3.5's "async for" loop (#71)Yann Kaiser2016-07-041-1/+7
* Fix TypeError when processing relative imports (#61)John Vandenberg2016-05-121-6/+17
* Avoid traceback when exception is del-ed in except (#67)Phil Frost2016-05-061-1/+7
* Suppress RedefinedWhileUnused for submodule import (#62)John Vandenberg2016-05-051-4/+18
* Warn against reusing exception names after the except: block on Python 3Łukasz Langa2016-04-121-5/+26
* Importation classes with imported name and aliasJohn Vandenberg2016-03-151-10/+88
* Handle matrix-multiplication operator ("@")matmulSteven Myint2015-12-211-1/+2
* Check feature names imported from futureJohn Vandenberg2015-11-251-0/+4
* Allow __future__ in doctestJohn Vandenberg2015-11-251-4/+30
* Process doctest scope directly under the module scopeJohn Vandenberg2015-11-251-14/+23
* Report each usage of star importsJohn Vandenberg2015-11-241-9/+50
* Report assert using tupleJohn Vandenberg2015-11-241-1/+6
* Fix undefined name in generators in classJohn Vandenberg2015-11-201-14/+13
* Fix PyPyJohn Vandenberg2015-11-201-2/+15
* Python 3 only allows import * at module levelJohn Vandenberg2015-11-191-0/+5
* Import in Class is a public memberJohn Vandenberg2015-11-151-0/+4
* Check for non-ast SyntaxErrorsnonastAaron Meurer2015-11-131-4/+61
* Add DoctestScopeJohn Vandenberg2015-11-121-5/+16
* Fix global removing all UndefinedNameJohn Vandenberg2015-11-121-2/+4
* PEP 498 f-strings supportJohn Vandenberg2015-11-081-1/+1
* Fix documentation of Binding.usedJohn Vandenberg2015-11-031-2/+2
* Merge pull request #27 from ryneeverett/used-global-importPhil Frost2015-08-281-3/+4
|\
| * Don't report UnusedImport when binding global nameryneeverett2015-08-141-3/+4
* | Support Python 3.5 async/await statements for Pyflakes.Igor Davydenko2015-08-261-3/+6
|/
* Roll back changes, add comment, and skip the test.ryneeverett2015-08-141-4/+4
* Don't mark shadowing variable as 'used'.ryneeverett2015-08-131-3/+4
* Fix TypeError bug.ryneeverett2015-06-161-1/+1
* Improve 'global' statement support.ryneeverett2015-04-271-2/+24
* Properly support list comprehensions in Python 3Steven Myint2015-03-201-1/+3
* Merge pull request #12 from chevah/885140-del-if-whilePhil Frost2015-02-141-0/+18
|\
| * Update after bitglue's review.Adi Roiban2015-02-141-22/+2
| * Update del handling in if and while statements.Adi Roiban2015-02-141-0/+38
* | Add an error for return outside of function.Adi Roiban2015-02-141-0/+4
|/
* Fix for lp/bug/1324942Charles-Francois Natali2014-07-231-1/+1
* Avoid crash on "return 2"Steven Myint2014-04-261-1/+5
* Release version 0.8.10.8.1Florent Xicluna2014-03-301-0/+2
* Refactor and (arguably) simplify.Florent Xicluna2014-03-301-53/+40
* Remove commentFlorent Xicluna2014-03-301-2/+0
* Do not bind the function in the current scope, until its arguments are handle...Florent Xicluna2014-03-301-1/+1
* RefactoringFlorent Xicluna2014-03-301-7/+7
* Report undefined name for literal tuple unpacking; fixes lp:879941Florent Xicluna2014-03-301-8/+21
* Restore correct behaviour of __future__ importsFlorent Xicluna2014-03-301-2/+2
* Be consistent, it's named node_class in the moduleFlorent Xicluna2014-03-301-4/+4
* Do not report 'unable to detect undefined names' when using invalid syntax 'f...Florent Xicluna2014-03-301-2/+2