summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
* Remove pypy specific testClaudiu Popa2019-07-163-11/+0
* Prepare 1.9.5Claudiu Popa2019-07-161-1/+1
* fix compatibility with unreleased changes to stdlib tokenizerMichael Hudson-Doyle2019-07-161-2/+5
* Remove test that was supposed to be removedClaudiu Popa2019-07-161-9/+0
* Use the absolute paths for tests and adapt the codes to the right ones. Close...Claudiu Popa2019-06-011-3/+4
* Backport: Remove the maximum length from the style regular expressions (#2290)SergeyKosarchuk2019-06-015-15/+10
* Improve the test suitepylint-1.9.4Claudiu Popa2018-12-271-10/+4
* Prepare 1.9.4Claudiu Popa2018-12-271-1/+1
* Fix false-postive undefined-variable in nested lambda. (#2274) (#2630)Jan Matějka2018-12-042-1/+13
* ``deprecated-method`` is correctly emitted for ``assertEquals`` and friends.Claudiu Popa2018-09-293-6/+29
* Can specify a default docstring type for when the check cannot guess the type...Ashley Whetter2018-07-262-7/+37
* Add support for numpydoc return value names (#2031)Mitchell T.H. Young2018-07-261-2/+3
* Ignore 'optional' type specifier for google docstring (#2023)Adrian Chirieac2018-07-262-0/+22
* Fixed false positive when a numpy Attributes section follows a Parameters sec...Ashley Whetter2018-07-262-0/+35
* Prepare 1.9.3Claudiu Popa2018-07-241-1/+1
* Need to also use the builtin module for Python 2Claudiu Popa2018-07-241-0/+3
* `chain.from_iterable` no longer emits `dict-{}-not-iterating` when dealing wi...Claudiu Popa2018-07-242-1/+7
* frozenset is an iterating context for dict.values() and friendsClaudiu Popa2018-07-241-1/+1
* [].extend and similar builtin operations don't emit `dict-*-not-iterating` wi...Claudiu Popa2018-07-242-0/+16
* Add `--exit-zero` option (#2099)Jason Owen2018-07-232-1/+16
* Correctly strip the path prefix from the report paths (#1883)Reverb C2018-07-165-7/+27
* `in` is considered iterating context for some of the Python 3 porting checkersClaudiu Popa2018-06-142-0/+6
* min() and max() accept iterators (#2138)Anthony Sottile2018-06-062-1/+4
* Fix the dict iterating texts by adding the parens. Thanks @asottlileClaudiu Popa2018-06-061-5/+5
* Prepare 1.9.2pylint-1.9.2Claudiu Popa2018-06-061-1/+1
* Check that the potential leaked names are not used in the except handlerClaudiu Popa2018-06-011-0/+8
* Don't use scope() to check if the variable is defined in the current statementClaudiu Popa2018-06-011-1/+1
* Pass six.StringIO, which is String.StringIO on Python 2, instead of using io....Claudiu Popa2018-05-261-1/+2
* Remove tkinter as deprecated module in the test file since that might not be ...Claudiu Popa2018-05-262-2/+0
* Make sure the value is not defined in the same comprehension when looking for...Claudiu Popa2018-05-241-1/+8
* Don't include excepthandlers that don't have a name when looking for exceptio...Claudiu Popa2018-05-232-0/+8
* Rewrite the comprehension-escape and exception-escape to work only on the cor...Claudiu Popa2018-05-232-48/+73
* Use last previous assignment for comprehension-escape (#2131)Anthony Sottile2018-05-222-3/+13
* builtins is allowed to redefine builtins. Close #1966Claudiu Popa2018-05-171-1/+1
* Use partition to not get a ValueError. Close #2112Claudiu Popa2018-05-171-1/+1
* Fixed up a couple of docstringsAshley Whetter2018-05-162-5/+5
* Fix an error which occurred when using the docparams extension and documentin...Adam Dangoor2018-05-162-1/+13
* Refixed old-raise-syntax not looking for tracebackpylint-1.9.1Ashley Whetter2018-05-161-2/+1
* Prepare 1.9.1Ashley Whetter2018-05-161-1/+1
* old-raise-syntax can be triggered only on Python 2Claudiu Popa2018-05-161-3/+5
* Updated copyright notices for version 1.9.0Ashley Whetter2018-05-1570-68/+82
* Fix lintClaudiu Popa2018-05-131-4/+6
* Reimplement the lookup() call by manually looking for the right nodesClaudiu Popa2018-05-131-13/+28
* Use a different dunder method than __init__Claudiu Popa2018-05-131-6/+6
* Added two new Python 3 porting checks, `exception-escape` and `comprehension-...Claudiu Popa2018-05-122-1/+62
* Emit a warning when sys.exc_clear is accessedClaudiu Popa2018-05-112-0/+16
* Emit a warning when .xreadlines() is accessedClaudiu Popa2018-05-112-5/+21
* No need to check for the traceback for old-raise-syntax in its 3-tuple formClaudiu Popa2018-05-101-2/+1
* Never push without testing firstClaudiu Popa2018-05-101-0/+1
* The Python 3 porting checker can run with Python 3 as wellClaudiu Popa2018-05-102-194/+84