summaryrefslogtreecommitdiff
path: root/pyflakes
Commit message (Expand)AuthorAgeFilesLines
* Support `__class__` without `self` in Python 3class-without-selfSteven Myint2018-01-192-4/+26
* Ignore underscore redefinition (#73)eight2017-12-082-2/+22
* Handle string literal annotations (#313)Jimmy Jia2017-11-253-4/+121
* Add check for unused exception binding in except: block (#293)Jon Dufresne2017-10-214-31/+77
* Make `pyflakes` happy about its our own code (#295)Steven Myint2017-09-201-0/+3
* Skip a test under PyPy that varies on version (#294)Steven Myint2017-09-201-7/+1
* Increment version to 1.6.01.6.0Phil Frost2017-08-031-1/+1
* Support Python 3.7 (#273)Steven Myint2017-06-051-1/+13
* Detect `pythonw` in shebang (#277)Steven Myint2017-06-032-7/+21
* Find Python files without extensionsSteven Myint2017-06-012-2/+42
* Merge branch 'master' of github.com:pyflakes/pyflakesPhil Frost2017-02-263-9/+10
|\
| * Don't test against file perms when running as root (#86)cfs-pure2017-02-041-0/+3
| * Process function scope variable annotations (#88)Jakub Stasiak2017-01-222-9/+7
* | Increment version to 1.5.01.5.0Phil Frost2017-01-091-1/+1
|/
* Enable support for PEP 526 annotated assignments (#84)Łukasz Langa2017-01-062-0/+79
* Increment version to 1.4.01.4.0Phil Frost2016-12-301-1/+1
* Use %r instead of %s in ImportStarMessage (#81)Jelte Fennema2016-09-281-1/+1
* Fix format string checking (#80)Jared Garst2016-09-082-1/+9
* Point URLs to PyCQA (#79)Ville Skyttä2016-09-021-1/+1
* Increment version to 1.3.01.3.0Phil Frost2016-09-011-1/+1
* Fix PyPy2 Windows IntegrationTests (#76)John Vandenberg2016-08-041-1/+25
* Fix typos (#77)Jakub Wilk2016-07-273-7/+7
* Check for duplicate dictionary keys (#72)geokala2016-07-253-1/+333
* Fix TestMain tests on Windows (#75)John Vandenberg2016-07-211-4/+28
* Fix "continue" and "break" checks ignoring py3.5's "async for" loop (#71)Yann Kaiser2016-07-042-1/+64
* Increment version to 1.2.31.2.3Phil Frost2016-05-121-1/+1
* Fix TypeError when processing relative imports (#61)John Vandenberg2016-05-122-6/+122
* Increment version to 1.2.21.2.2Phil Frost2016-05-061-1/+1
* Avoid traceback when exception is del-ed in except (#67)Phil Frost2016-05-062-1/+16
* Increment version to 1.2.11.2.1Phil Frost2016-05-051-1/+1
* Suppress RedefinedWhileUnused for submodule import (#62)John Vandenberg2016-05-052-4/+24
* Increment version to 1.2.01.2.0Phil Frost2016-05-031-1/+1
* Warn against reusing exception names after the except: block on Python 3Łukasz Langa2016-04-122-5/+195
* Importation classes with imported name and aliasJohn Vandenberg2016-03-152-10/+183
* Increment version to 1.1.01.1.0Phil Frost2016-03-011-1/+1
* Allow passing args to main()John Vandenberg2016-01-262-6/+49
* Handle matrix-multiplication operator ("@")matmulSteven Myint2015-12-212-1/+9
* Check feature names imported from futureJohn Vandenberg2015-11-253-0/+25
* Allow __future__ in doctestJohn Vandenberg2015-11-252-12/+32
* Process doctest scope directly under the module scopeJohn Vandenberg2015-11-252-14/+71
* Report each usage of star importsJohn Vandenberg2015-11-244-13/+82
* Report assert using tupleJohn Vandenberg2015-11-243-1/+47
* Fix undefined name in generators in classJohn Vandenberg2015-11-202-16/+36
* Fix PyPyJohn Vandenberg2015-11-204-21/+113
* Python 3 only allows import * at module levelJohn Vandenberg2015-11-194-0/+34
* Merge test_doubleNestingReportsClosestNameJohn Vandenberg2015-11-162-20/+7
* Import in Class is a public memberJohn Vandenberg2015-11-152-5/+23
* Check for non-ast SyntaxErrorsnonastAaron Meurer2015-11-133-10/+772
* Add DoctestScopeJohn Vandenberg2015-11-123-6/+187
* Fix global removing all UndefinedNameJohn Vandenberg2015-11-122-3/+28