summaryrefslogtreecommitdiff
path: root/test
Commit message (Expand)AuthorAgeFilesLines
* give [deprecated-lambda] when a map/filter of a lambda could be a comprehensi...Martin Pool2013-02-262-0/+24
* string check: don't warn about octal escape sequence, warn about \o (not octa...Martin Pool2013-02-252-5/+12
* closes #113231. logging checker now looks at instances of Logger classes in a...Mike Bryant2012-12-062-0/+26
* disable R0924 here to fix test_regr.test_gtk_importSylvain Th?nault2013-02-201-1/+1
* Emit a warning if __all__ contains non-string objects.tmarek2013-01-084-0/+24
* backport stableSylvain Th?nault2013-01-089-3/+63
|\
| * backport stableSylvain Th?nault2012-11-129-3/+63
| |\
| | * Add messages I0020 and I0021 for reporting of suppressed messages and useless...tmarek2012-11-125-2/+50
| | * Change the regular expression for inline options so that a preceeding # is no...tmarek2012-11-071-0/+2
| | * add support for --disable=all option (closes: #105327)Alexandre Fayolle2012-10-033-1/+11
* | | Fixed a couple of bugs in the __all__ handling and added a newstabletmarek2013-01-083-0/+23
* | | Fix emission of reimport warnings and extend the testcase.tmarek2013-01-082-3/+27
* | | erroneous W0212 (access to protected member) on super call. Closes #115580Martin Pool2013-01-081-0/+22
|/ /
* | Fixes a crash when an __init__ method in a base class has been created by ass...tmarek2012-11-122-1/+14
|/
* Add --ignore-imports option to similarity checking. Closes #106534.Ry4an Brase2012-09-293-53/+122
* don't want to run a checker only because of a Fatal errorSylvain Th?nault2012-09-201-9/+3
* Add name type in C0103 messageSylvain Th?nault2012-09-203-12/+12
* integrate patch from Peter Hammond to check protocol completness and avoid fa...Peter Hammond2012-09-283-1/+53
* Added the ability to specify reporter class name as report's 'output-format'.Kevin Jing Qiu2012-09-201-0/+13
* lint fixesSylvain Th?nault2012-09-191-4/+1
* stop using assert_, rather use assertTrue / assertFalseSylvain Th?nault2012-09-191-55/+63
* Closes #104572: symbolic warning names in output (by Martin Pool)Martin Pool2012-09-192-5/+38
* [format checker] check for anomalous backslash escape (new W1401, W1402). Clo...Sylvain Th?nault2012-09-192-0/+52
* fix R0801 similarities bug. Closes #63424Anthony VEREZ2012-09-191-3/+2
* create a console_scripts entry point to be used by easy_install, buildout and...Sylvain Th?nault2012-09-141-14/+20
* Fix false positive W0231 for missing call to object.__init__. Closes #103656FELD Boris2012-09-191-0/+10
* Add test and code for handling __all__ with pylint. Closes #4685.FELD Boris2012-09-192-0/+49
* Improve checking of metaclass methods's first arg. Closes #4014.FELD Boris2012-09-196-25/+52
* fix test broken by 27930e5ee87eSylvain Th?nault2012-09-061-1/+1
* fix grammatical error for W0332 message. Closes #100654Sylvain Th?nault2012-08-291-1/+1
* Adds check for boolop being used as exception class. Closes #100707.Tim Hatch2012-08-292-0/+19
* Refactor test_func in order to extract common part for reutilization in pylin...FELD Boris2012-07-045-255/+44
* Fix tests which failed on tempfile file comparaison due to Mac OS X which mak...FELD Boris2012-06-071-0/+15
* split test to isolate py 2.7 specific syntax and get tests back to green with...Sylvain Th?nault2012-06-074-11/+16
* Closes #93591: Correctly emit W0623 on multiple assignment of unpackable exce...tmarek2012-06-072-0/+12
* Add checking for protected attribute assignement, closes #7394.Sylvain Th?nault2012-06-072-14/+22
* Doesn't check that overriden method signature match if it's a private method,...Sylvain Th?nault2012-06-071-2/+28
* fix crash when using set in regexp for --generated-members option. Closes #88914Sylvain Th?nault2012-05-211-0/+5
* Emit W0102 (dangerous default value) when sets are used as default arguments ...Torsten Marek2012-05-152-0/+17
* Fix the variables check to not emit false positives for E0602 on {list,genera...Torsten Marek2012-03-151-0/+16
* don't emit E0202 (attribute hiding a method) on @property methods. Closes #89092Sylvain Th?nault2012-03-151-0/+24
* d-t-wSylvain Th?nault2012-02-231-2/+2
* fix crash when decorators are accessed through more than one dot. Closes #87192Sylvain Th?nault2012-01-191-0/+8
* Detect assignments to a loop variable in the else branch of a for statement.Torsten Marek2011-11-172-0/+22
* Do not issue warnings when using 2.6's property.setter/deleter functionality....Sylvain Th?nault2011-10-261-1/+22
* Update W0623 to not trigger on code like:Sylvain Th?nault2011-10-242-5/+18
* W0702 messages should be added to the line of the except handler, not the fir...Torsten Marek2011-10-241-1/+1
* drop unittest2 deprecation warningSylvain Th?nault2011-10-242-18/+18
* Fix for #81078: Warn if names in exception handlers clobber overwrite existin...Sylvain Th?nault2011-10-242-0/+63
* better message for E0202 (closes #77237)Sylvain Th?nault2011-10-031-1/+1