summaryrefslogtreecommitdiff
path: root/checkers
Commit message (Expand)AuthorAgeFilesLines
* Fixed a couple of bugs in the __all__ handling and added a newstabletmarek2013-01-081-8/+16
* Fix emission of reimport warnings and extend the testcase.tmarek2013-01-081-7/+13
* erroneous W0212 (access to protected member) on super call. Closes #115580Martin Pool2013-01-081-1/+6
* Fixes a crash when an __init__ method in a base class has been created by ass...tmarek2012-11-121-2/+2
* Add --ignore-imports option to similarity checking. Closes #106534.Ry4an Brase2012-09-291-8/+31
* Add name type in C0103 messageSylvain Th?nault2012-09-201-3/+6
* integrate patch from Peter Hammond to check protocol completness and avoid fa...Peter Hammond2012-09-281-1/+52
* lint fixesSylvain Th?nault2012-09-196-10/+10
* Closes #104572: symbolic warning names in output (by Martin Pool)Martin Pool2012-09-1913-5/+141
* [format checker] check for anomalous backslash escape (new W1401, W1402). Clo...Sylvain Th?nault2012-09-192-4/+103
* fix R0801 similarities bug. Closes #63424Anthony VEREZ2012-09-191-1/+1
* create a console_scripts entry point to be used by easy_install, buildout and...Sylvain Th?nault2012-09-141-5/+4
* drop useless attribute from variables checkerSylvain Th?nault2012-09-191-5/+0
* white spaces cleanupSylvain Th?nault2012-09-191-17/+17
* use .iter* version of dict methods when possibleSylvain Th?nault2012-09-194-11/+11
* Fix false positive W0231 for missing call to object.__init__. Closes #103656FELD Boris2012-09-191-4/+3
* Add test and code for handling __all__ with pylint. Closes #4685.FELD Boris2012-09-191-2/+16
* Improve checking of metaclass methods's first arg. Closes #4014.FELD Boris2012-09-191-30/+68
* fix grammatical error for W0332 message. Closes #100654Sylvain Th?nault2012-08-291-2/+2
* Adds check for boolop being used as exception class. Closes #100707.Tim Hatch2012-08-291-0/+7
* pylint fixesSylvain Th?nault2012-08-223-5/+2
* Fix checkers.utils for other implementations (use of __builtins__). Closes #9...FELD Boris2012-07-091-3/+3
* Closes #93591: Correctly emit W0623 on multiple assignment of unpackable exce...tmarek2012-06-072-8/+25
* Refactor _check_protected_attribute_access by extracting independent part in ...Sylvain Th?nault2012-06-072-10/+31
* Add checking for protected attribute assignement, closes #7394.Sylvain Th?nault2012-06-071-10/+50
* Doesn't check that overriden method signature match if it's a private method,...Sylvain Th?nault2012-06-072-3/+14
* fix crash when using set in regexp for --generated-members option. Closes #88914Sylvain Th?nault2012-05-211-0/+1
* Emit W0102 (dangerous default value) when sets are used as default arguments ...Torsten Marek2012-05-151-0/+6
* Fix the variables check to not emit false positives for E0602 on {list,genera...Torsten Marek2012-03-151-1/+5
* don't emit E0202 (attribute hiding a method) on @property methods. Closes #89092Sylvain Th?nault2012-03-151-1/+11
* InferenceError may be raised when running the next iteration, but we don't wa...Sylvain Th?nault2012-02-231-0/+2
* fix crash when decorators are accessed through more than one dot. Closes #87192Sylvain Th?nault2012-01-191-1/+1
* Detect assignments to a loop variable in the else branch of a for statement.Torsten Marek2011-11-171-1/+8
* add note about soon useless stream.seek()Sylvain Th?nault2011-10-264-4/+4
* Do not issue warnings when using 2.6's property.setter/deleter functionality....Sylvain Th?nault2011-10-262-1/+20
* Update W0623 to not trigger on code like:Sylvain Th?nault2011-10-241-1/+3
* W0702 messages should be added to the line of the except handler, not the fir...Torsten Marek2011-10-241-1/+1
* Fix for #81078: Warn if names in exception handlers clobber overwrite existin...Sylvain Th?nault2011-10-243-5/+45
* better message for E0202 (closes #77237)Sylvain Th?nault2011-10-031-9/+7
* closes #74747: don't crash when lookup up a special attribute in class scopeSylvain Th?nault2011-09-071-2/+9
* closes #74745: make 'too general' exception names configurable (patch by Google)Sylvain Th?nault2011-09-071-6/+15
* Fixes misleading wording in warnings E1001 and E1002 (patch by google)Sylvain Th?nault2011-09-071-4/+4
* closes #74087: handle case where inference of a module return YESSylvain Th?nault2011-09-071-1/+3
* closes #74742: make allowed name for first argument of class method configurableSylvain Th?nault2011-09-071-3/+18
* add regular expression support for generated-members (closes #69738)Alain Leufroy2011-07-081-4/+16
* built-in checkers use [01-50] base message ids (closes #68057)Sylvain Th?nault2011-07-083-29/+34
* closes #70495: absolute imports fail depending on module path (patch by Jacek...Sylvain Th?nault2011-07-081-1/+2
* try to add information about why something is not importableSylvain Th?nault2011-07-081-2/+6
* Fix false positive in reimport check (closes #60828)Julien Cristau2011-07-081-1/+4
* closes #69993: Additional string format checks for logging moduleSylvain Th?nault2011-07-083-106/+176