summaryrefslogtreecommitdiff
path: root/pyflakes/test
Commit message (Expand)AuthorAgeFilesLines
...
* | | Do not report undefined name if it is caught by a NameError handler.Florent Xicluna2013-04-021-0/+30
|\ \ \
| * | | Do not report undefined name if the code is protected with a NameError handler.Florent Xicluna2013-03-301-0/+30
| |/ /
* | | Add attribute Message.col to report columns offset.Florent Xicluna2013-04-011-6/+15
|\ \ \
| * | | Tests: rename the mock AST node class.Florent Xicluna2013-03-301-8/+8
| * | | Add attribute Message.col to report the columns offset.Florent Xicluna2013-03-301-6/+15
| |/ /
* | | Add docstrings to some modules, copyright moved to LICENSE and setup.py.Florent Xicluna2013-03-311-3/+0
* | | Reflow some docstrings.Florent Xicluna2013-03-311-4/+6
* | | Remove extra blank lines from the testsuite.Florent Xicluna2013-03-314-121/+12
|/ /
* | Do not report redefinition of variable for a variable used in a list comprehe...Florent Xicluna2013-03-061-0/+25
* | Do not report redefinition of variable for generator expression and set / dic...Florent Xicluna2013-02-082-1/+91
|/
* More tests with augmented assignments.Florent Xicluna2013-01-291-7/+16
* Regression with augmented assignments.Florent Xicluna2013-01-291-0/+9
* Fix spurious redefinition warnings in conditionals.Florent Xicluna2013-01-292-1/+179
|\
| * Improve handling of try/except/else/finally compound statements.Florent Xicluna2013-01-281-0/+61
| * Fix an undetected assignment in the except handler.Florent Xicluna2013-01-281-0/+6
| * Fix spurious redefinition warnings in conditionals. Patch by Marcin Cieślak.Florent Xicluna2013-01-252-1/+112
* | Don't issue Unused Variable warning when using locals() in current scope.Florent Xicluna2013-01-291-0/+22
|\ \
| * | Do not warn about unused variable when using locals() in current scope. Patch...Florent Xicluna2013-01-251-0/+22
| |/
* | Fix test for Python 3 annotations.Florent Xicluna2013-01-291-2/+3
* | Fixes for Python 3: annotations, metaclass and keyword-only arguments.Florent Xicluna2013-01-281-0/+35
* | Do not report undefined name in __all__ if import * is used.Florent Xicluna2013-01-271-0/+10
|/
* Conform to the method naming convention for the testsFlorent Xicluna2013-01-251-5/+5
* Fix failure on invalid escape.Florent Xicluna2013-01-251-0/+17
* Catch various decoding issues.Florent Xicluna2013-01-251-2/+19
* Merge the patch for RedefinedInListComp from pyflakes-ast branchFlorent Xicluna2013-01-251-0/+29
* More tests for Python 3 and add missing handlers for BYTES, STARRED, YIELDFRO...Florent Xicluna2013-01-253-0/+108
* Rename pyflakes.scripts.pyflakes to pyflakes.api.Florent Xicluna2013-01-251-1/+6
* Add Python 3 supportFlorent Xicluna2013-01-194-40/+62
* Switch to unittest2 for the tests, and run them on Python 2.5Florent Xicluna2013-01-085-162/+115
* Duplicate _EverythingGetter, rather than import it.Jonathan Lange2012-10-231-6/+18
* Collapse problemDecodingSource and ioError into the one method.Jonathan Lange2012-10-231-30/+10
* Explain what's going on.Jonathan Lange2012-10-191-0/+8
* Remove unnecessary parensJonathan Lange2012-10-191-1/+1
* Change the test assertions to more naturally follow getProcessOutputAndValue'...Jonathan Lange2012-10-191-5/+4
* 6 (partial). Use Twisted to spawn the process, not subprocess.Jonathan Lange2012-10-191-8/+30
* 6 (partial). Change the integration tests to expect a Deferred from runPyfla...Jonathan Lange2012-10-191-15/+16
* 6 (partial). Contain the poison by returning returncode, out, err from runPy...Jonathan Lange2012-10-191-18/+17
* 6 (partial). Rename 'popenPyflakes' to 'runPyflakes'.Jonathan Lange2012-10-191-5/+9
* 4. Add a bunch of docstrings.Jonathan Lange2012-10-191-0/+20
* 3. Use FilePath rather than os.path (in tests)Jonathan Lange2012-10-191-9/+8
* 0. Move Reporter to new module, pyflakes.reporter.Jonathan Lange2012-10-191-1/+1
* A swag of integration tests.Jonathan Lange2012-07-081-0/+81
* Split out the bit that checks recursively.Jonathan Lange2012-07-081-0/+24
* Make iterSourceCode take many paths.Jonathan Lange2012-07-081-4/+35
* Initial thing to iterate of source code.Jonathan Lange2012-07-081-1/+58
* WhitespaceJonathan Lange2012-07-081-0/+5
* Report flakes from the reporter too.Jonathan Lange2012-07-061-1/+16
* Add flake reporting.Jonathan Lange2012-07-061-5/+15
* Handle multiple lines in the reporter.Jonathan Lange2012-07-061-8/+30
* More tests using reporter.Jonathan Lange2012-07-061-7/+11