Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | use .iter* version of dict methods when possible | Sylvain Th?nault | 2012-09-19 | 1 | -2/+2 | |
| | ||||||
* | Fix false positive W0231 for missing call to object.__init__. Closes #103656 | FELD Boris | 2012-09-19 | 1 | -4/+3 | |
| | ||||||
* | Improve checking of metaclass methods's first arg. Closes #4014. | FELD Boris | 2012-09-19 | 1 | -30/+68 | |
| | | | | | | * Add C0204 for __new__ method of metaclass. * Add valid-metaclass-classmethod-first-arg config option. * Move a test, improve it and fix another one. | |||||
* | Refactor _check_protected_attribute_access by extracting independent part in ↵ | Sylvain Th?nault | 2012-06-07 | 1 | -10/+3 | |
| | | | | utils functions. Improve is_super_call docstring. | |||||
* | Add checking for protected attribute assignement, closes #7394. | Sylvain Th?nault | 2012-06-07 | 1 | -10/+50 | |
| | | | | | Remove checking for protected attribute access via super(). Move common code for checking protected attribute accessing in a new function _check_protected_attribute_access. | |||||
* | Doesn't check that overriden method signature match if it's a private ↵ | Sylvain Th?nault | 2012-06-07 | 1 | -1/+4 | |
| | | | | method, closes #18772 | |||||
* | don't emit E0202 (attribute hiding a method) on @property methods. Closes #89092 | Sylvain Th?nault | 2012-03-15 | 1 | -1/+11 | |
| | ||||||
* | better message for E0202 (closes #77237) | Sylvain Th?nault | 2011-10-03 | 1 | -9/+7 | |
| | | | | | this also ease treatment: don't try to search parent frame (ie belonging class) which may be hazardous, simply use the assignment node. | |||||
* | closes #74742: make allowed name for first argument of class method configurable | Sylvain Th?nault | 2011-09-07 | 1 | -3/+18 | |
| | | | | (patch by Google) | |||||
* | avoid W0221 or W0222 when *args and **kwargs are in use. Patch by Charles Duffy. | Sylvain Th?nault | 2011-01-06 | 1 | -0/+3 | |
| | ||||||
* | performance: use 'active_msgs' attribute to disable function calls or the like | Emile Anclin | 2010-12-13 | 1 | -6/+16 | |
| | ||||||
* | 223 : run python2.x compatible fixers | Emile Anclin | 2010-11-15 | 1 | -1/+1 | |
| | ||||||
* | use generic disable / enable methods and inline option | Sylvain Th?nault | 2010-04-19 | 1 | -1/+1 | |
| | ||||||
* | apply Scott Pilkey patch: fix #9018: when using defining-attr-method order ↵ | Emile Anclin | 2010-03-24 | 1 | -5/+12 | |
| | | | | matters | |||||
* | copyright update : date up 2010 | Emile Anclin | 2010-03-23 | 1 | -1/+1 | |
| | ||||||
* | nikola kramaric fix #5975, Abstract intermediate class not recognized as such | Sylvain Th?nault | 2010-03-23 | 1 | -0/+14 | |
| | ||||||
* | modify astng imports after astng 'rebuild' refactoring | Emile Anclin | 2010-03-22 | 1 | -1/+1 | |
| | ||||||
* | Fix and test case for W0233 false positive: if the same superclass | Maarten ter Huurne | 2010-03-02 | 1 | -3/+5 | |
| | | | | | constructor was called twice, the second time was reported as a call to a non-existing superclass constructor. | |||||
* | include Dotan Barak spell fixes patch | Sylvain Th?nault | 2009-11-23 | 1 | -11/+11 | |
| | ||||||
* | d-t-w, cleanup | Sylvain Th?nault | 2009-08-26 | 1 | -40/+39 | |
| | ||||||
* | cleanup | sylvain thenault | 2009-03-24 | 1 | -2/+0 | |
| | ||||||
* | only skip E0203 when catched by an AttributeError or parent | sylvain thenault | 2009-03-24 | 1 | -1/+1 | |
| | ||||||
* | don't issue E0203 when in try: except AttributeError | sylvain thenault | 2009-03-23 | 1 | -14/+11 | |
| | ||||||
* | more complete list of special methods, also skip W0613 | sylvain thenault | 2009-03-23 | 1 | -9/+2 | |
| | | | | for python internal method | |||||
* | use .fromlineno, not .linenoastng2 | sylvain thenault | 2009-03-19 | 1 | -1/+1 | |
| | ||||||
* | re | Sylvain | 2009-03-17 | 1 | -1/+1 | |
| | ||||||
* | CallFunc as now a func attribute, not node | Sylvain | 2009-03-17 | 1 | -1/+1 | |
| | ||||||
* | fix import for new astng organisation | Sylvain | 2009-03-17 | 1 | -2/+3 | |
| | ||||||
* | handle Del* and AugAssing situations | Emile Anclin | 2009-03-17 | 1 | -0/+4 | |
| | ||||||
* | local_attr now return a list of nodes | Emile Anclin | 2009-03-17 | 1 | -4/+4 | |
| | ||||||
* | little corrections | Emile Anclin | 2009-03-10 | 1 | -4/+5 | |
| | ||||||
* | we want the names, not AssName nodes : use new argnames method | Emile Anclin | 2009-03-10 | 1 | -7/+8 | |
| | ||||||
* | a lot of small attribute corrections and more | Emile Anclin | 2009-03-09 | 1 | -2/+2 | |
| | ||||||
* | replace argnames by args.args | Emile Anclin | 2009-03-09 | 1 | -8/+8 | |
| | ||||||
* | no source_line() / last_source_line() are replaced by fromlineno / tolineno | Emile Anclin | 2009-03-09 | 1 | -1/+1 | |
| | ||||||
* | some more astng2 support / attr modifications | Emile Anclin | 2009-03-06 | 1 | -3/+3 | |
| | ||||||
* | cleanup | Sylvain Thenault | 2008-11-19 | 1 | -3/+1 | |
| | ||||||
* | don't warn on access to instance._ (a bit ginco specific but...) | Sylvain | 2007-04-16 | 1 | -2/+2 | |
| | ||||||
* | fix potential bug | Sylvain | 2007-02-22 | 1 | -1/+3 | |
| | ||||||
* | don't emit 'method could be a function' for special methods | Sylvain | 2007-02-19 | 1 | -2/+10 | |
| | ||||||
* | #2485 W0222 false positive | Sylvain | 2007-02-19 | 1 | -6/+6 | |
| | ||||||
* | #3123 | Sylvain | 2007-02-19 | 1 | -2/+3 | |
| | ||||||
* | update for new astng api | Sylvain | 2007-02-16 | 1 | -1/+1 | |
| | ||||||
* | fix for a ginco crash | syt | 2006-11-23 | 1 | -0/+2 | |
| | ||||||
* | fix W0233 bug | syt | 2006-11-21 | 1 | -3/+3 | |
| | ||||||
* | fix spelling mistake pointed out by skip@pobox.com | Alexandre Fayolle | 2006-05-27 | 1 | -13/+13 | |
| | ||||||
* | check ChangeLog | syt | 2006-05-09 | 1 | -3/+6 | |
| | ||||||
* | * new W0212 message for access to protected member from client code | syt | 2006-05-05 | 1 | -19/+34 | |
| | | | | | | * new W0212 message for access to protected member from client code * new W0105 message extracted from W0104 (statement seems to have no effect) with string | |||||
* | forget the past. | root | 2006-04-26 | 1 | -0/+481 | |
forget the past. |