summaryrefslogtreecommitdiff
path: root/pyflakes/checker.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Catch undefined var in loop generator when used as loop var; fixes lp:1205907Florent Xicluna2014-03-291-77/+65
* Refactor method handleDoctestsFlorent Xicluna2014-03-291-9/+9
* Do not report redefinition of import in a local scope if the global name is u...Florent Xicluna2014-03-291-39/+39
* Use the PY32 constant for the AST change in Python 3.3Florent Xicluna2014-03-291-4/+4
* Release version 0.80.8Florent Xicluna2014-03-221-6/+0
* Refactor the ReturnWithArgsInsideGenerator checkerFlorent Xicluna2014-03-221-40/+19
* Rename attribute level to depth on AST nodes; fixes lp:1277280Florent Xicluna2014-03-221-3/+3
* Do not complain about _ in doctests; fixes lp:1178096Florent Xicluna2014-03-221-0/+5
* Simplify version specific constantsFlorent Xicluna2014-03-221-6/+2
* Fix incremental __all__ and tuples in __all__; lp:1241878 and lp:1266446Florent Xicluna2014-03-221-17/+18
* only run retung with arguments inside generator check if `sys.version_info < ...Attila Oláh2014-02-281-1/+2
* Merge pull request #11 from attilaolah/masterKevin Watters2014-02-261-0/+45
|\
| * whitespaceAttila Oláh2013-07-051-1/+0
| * catch return with arguments inside generator (fixes #1198132)Attila Oláh2013-07-051-0/+46
* | Turn off doctest checking by default.Jean-Paul Calderone2014-02-171-2/+3
* | Merge pull request #19 from laurentb/doctest-fixFlorent Xicluna2014-01-171-1/+1
|\ \
| * | Fix crash when no "offset" in doctest syntax errorLaurent Bachelier2014-01-041-1/+1
* | | Pass tests on Python 3.4 betaFlorent Xicluna2014-01-171-25/+26
* | | Merge pull request #16 from myint/masterFlorent Xicluna2014-01-171-4/+12
|\ \ \ | |/ / |/| |
| * | Add some Python 3.4 supportSteven Myint2013-12-261-4/+12
| |/
* | Sanitize the Python 2 check.Vincent Driessen2013-12-191-5/+6
|/
* Remove leftover commentFlorent Xicluna2013-06-151-1/+0
* Deprecate pushFunctionScope and pushClassScopeFlorent Xicluna2013-06-151-5/+5
* Fix undefined name for generator expression and dict/set comprehension at cla...Florent Xicluna2013-06-151-17/+19
* Add environment variables PYFLAKES_NODOCTEST and PYFLAKES_BUILTINSFlorent Xicluna2013-04-241-2/+7
* Add boolean attribute Checker.withDoctest to ignore doctestsFlorent Xicluna2013-04-241-2/+5
* Fix computation of DoctestSyntaxError.lineno and colFlorent Xicluna2013-04-241-9/+13