summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Remove unnecessary `else`myint-simplify-elseSteven Myint2019-03-021-2/+2
* Improve @overload detection (#435)Anthony Sottile2019-03-012-8/+52
* Include column numbers with all error messages (#426)Aaron Meurer2019-02-091-2/+2
* Fix line number of comment syntax error message (#420)Anthony Sottile2019-02-012-1/+15
* Fix typing.overload check to only check imported names (#423)Anthony Sottile2019-01-312-0/+23
* Fix appveyor buildAnthony Sottile2019-01-311-30/+8
* Write changelog and bump version for 2.1.02.1.0Anthony Sottile2019-01-232-1/+23
* Fix regression with `__all__ = [not, strings]`Anthony Sottile2019-01-222-3/+36
* Use file_tokens to better match flake8 apiAnthony Sottile2019-01-214-11/+13
* Allow star args in type commentsAnthony Sottile2019-01-212-1/+12
* Add check for use of 'is' operator with str, bytes, and int literalsJon Dufresne2019-01-193-1/+219
* Set the proper scope for `async def`Anthony Sottile2019-01-172-0/+9
* Fix python3.8 docstring offsetsAnthony Sottile2019-01-171-1/+2
* Move type annotations tests to their own classAnthony Sottile2019-01-052-253/+273
* Parse PEP 484 type commentsAnthony Sottile2019-01-0410-52/+406
* Update TravisCI to use flake8 3.6.0 (#398)Addison Elliott2019-01-023-15/+14
* support module scope __annotations__秋葉2019-01-012-5/+17
* Remove impossible except UnicodeErrorAnthony Sottile2018-12-311-3/+0
* Include Python version & OS along with version informationAddison Elliott2018-12-311-1/+10
* Add support for PEP 563 (#356) (#374)Jörn Heissler2018-12-222-0/+36
* Test with py3.7; Travis should use Xenial for 3.7 and nightly. (#379)Jörn Heissler2018-12-222-11/+14
* Make the code and tests compatible with 3.8-dev. (#369)Serhiy Storchaka2018-12-204-19/+35
* Rename NEWS.txt to NEWS.md for nicer rendering (#394)Marius Gedminas2018-12-074-189/+214
* checker.py: Report undefined names in __all__Charlie Liu2018-11-032-4/+12
* Mark SubmoduleImportation imported with Importation with alias as usedjoshua1b2018-11-022-0/+26
* Exempt typing.overload from duplicate detectionAnthony Sottile2018-11-013-3/+56
* Don't leave behind temporary files when running the testsuiteAnthony Sottile2018-11-011-126/+125
* Simplify Python 3 except scopeJohn Vandenberg2018-10-311-11/+4
* checker.py: Add support for list concatenationCharlie Liu2018-10-312-16/+27
* Consider AsyncFor the same as For in variable contexts (#380)Anthony Sottile2018-10-302-4/+14
* checker.py: Check for invalid print syntaxMacBox72018-08-113-0/+61
* test_api.py: Remove redundant PYPY checkJohn Vandenberg2018-08-061-1/+1
* test_errors_syntax: Expect SystemExit error code 1John Vandenberg2018-08-061-2/+4
* test_invalidEscape: Test on PyPyJohn Vandenberg2018-08-031-6/+17
* checker.py: Handle UnboundLocal error for builtinsMacBox72018-08-013-13/+68
* Handle subtrees as input to checkerMacBox72018-07-194-14/+212
* Recognize __module__ when used in class scopeMarius Gedminas2018-07-172-0/+19
* Don't warn about unused `_` magic varKurtis Rader2018-07-163-1/+20
* Update all pypi.python.org URLs to pypi.org (#337)Jon Dufresne2018-06-101-2/+2
* Fix PyPy installation in AppVeyor (#336)Steven Myint2018-06-091-1/+1
* Increment version to 2.0.02.0.0Phil Frost2018-05-202-2/+7
* Update versions (#303)Hugo2018-03-252-2/+3
* Drop support for EOL Python <2.7 and 3.2-3.3 (#322)Hugo2018-03-2513-92/+49
* skip Emacs/vim backup files (#331)Skip Montanaro2018-03-252-0/+5
* Warn on raise NotImplemented(...)Scott Sanderson2018-02-183-1/+46
* Fix typo (#327)Jakub Wilk2018-01-291-1/+1
* Work around Travis CI error on Python "nightly" (#326)Steven Myint2018-01-281-4/+2
* Support `__class__` without `self` in Python 3 (#325)Steven Myint2018-01-272-4/+26
* Ignore underscore redefinition (#73)eight2017-12-082-2/+22
* Handle string literal annotations (#313)Jimmy Jia2017-11-253-4/+121