summaryrefslogtreecommitdiff
path: root/pyflakes/test/test_undefined_names.py
Commit message (Expand)AuthorAgeFilesLines
* remove handling of `# type:` comments now that pyflakes is py3+ (#684)Anthony Sottile2022-09-161-2/+1
* burn the bridges with python 2.x (#707)Anthony Sottile2022-06-121-63/+12
* Recognize __qualname__ when used in class scope (#588)Pilou2020-10-121-0/+17
* Use file_tokens to better match flake8 apiAnthony Sottile2019-01-211-2/+2
* Parse PEP 484 type commentsAnthony Sottile2019-01-041-4/+4
* support module scope __annotations__秋葉2019-01-011-0/+8
* Recognize __module__ when used in class scopeMarius Gedminas2018-07-171-0/+16
* Drop support for EOL Python <2.7 and 3.2-3.3 (#322)Hugo2018-03-251-9/+6
* Support `__class__` without `self` in Python 3 (#325)Steven Myint2018-01-271-0/+18
* Add check for unused exception binding in except: block (#293)Jon Dufresne2017-10-211-10/+19
* Avoid traceback when exception is del-ed in except (#67)Phil Frost2016-05-061-0/+9
* Warn against reusing exception names after the except: block on Python 3Łukasz Langa2016-04-121-0/+169
* Report each usage of star importsJohn Vandenberg2015-11-241-2/+3
* Fix undefined name in generators in classJohn Vandenberg2015-11-201-2/+23
* Python 3 only allows import * at module levelJohn Vandenberg2015-11-191-0/+1
* Merge test_doubleNestingReportsClosestNameJohn Vandenberg2015-11-161-1/+5
* Fix global removing all UndefinedNameJohn Vandenberg2015-11-121-1/+24
* Improve 'global' statement support.ryneeverett2015-04-271-2/+14
* Properly support list comprehensions in Python 3Steven Myint2015-03-201-0/+9
* Fix print function.Adi Roiban2015-02-141-1/+1
* Update after bitglue's review.Adi Roiban2015-02-141-10/+11
* Update del handling in if and while statements.Adi Roiban2015-02-141-0/+67
* Break up tests and skip dictionary comprehensions on 2.6 or lowerIan Cordasco2014-07-231-6/+18
* Failing test for lp/bug/1324942Charles-Francois Natali2014-07-231-0/+26
* Report undefined name for literal tuple unpacking; fixes lp:879941Florent Xicluna2014-03-301-0/+36
* Catch undefined var in loop generator when used as loop var; fixes lp:1205907Florent Xicluna2014-03-291-0/+15
* Remove dependency on unittest2 completelyFlorent Xicluna2013-07-021-4/+2
* Fix undefined name for generator expression and dict/set comprehension at cla...Florent Xicluna2013-06-191-0/+22
|\
| * Skip dict/set comprehension with Python 2.5 and 2.6Florent Xicluna2013-06-151-2/+9
| * Fix undefined name for generator expression and dict/set comprehension at cla...Florent Xicluna2013-06-151-0/+15
* | Remove dependency on unittest2 for the testsFlorent Xicluna2013-06-191-1/+1
|/
* Minor style cleanupFlorent Xicluna2013-04-211-15/+22
* 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
* | Remove extra blank lines from the testsuite.Florent Xicluna2013-03-311-11/+0
|/
* More tests with augmented assignments.Florent Xicluna2013-01-291-7/+16
* Regression with augmented assignments.Florent Xicluna2013-01-291-0/+9
* 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
* More tests for Python 3 and add missing handlers for BYTES, STARRED, YIELDFRO...Florent Xicluna2013-01-251-0/+24
* Add Python 3 supportFlorent Xicluna2013-01-191-6/+9
* Switch to unittest2 for the tests, and run them on Python 2.5Florent Xicluna2013-01-081-2/+2
* Allow WindowsErrorJean-Paul Calderone2011-12-041-0/+8
* Merge pyflakes-ast-3005exarkun2010-04-131-10/+55
* Apply 0001-pyflakes-should-not-warn-about-__path__-inside-__ini.patch.jonathanj2009-07-251-0/+9
* Merge unused-variable-flakes-2718-2exarkun2009-06-031-1/+8
* merge pyflakes-builtins-2795. updates Pyflakes to recognize __builtins__ as ...moe2008-11-271-1/+23
* Merge pyflakes-2.3-2093-2exarkun2008-03-281-2/+40
* Pyflakes improvements.mithrandi2006-11-301-2/+42
* move code from pyflakes.__init__ -> pyflakes.checker, from pyflakes.test.__in...moe2005-12-311-2/+3