File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
src/main/resources/docs/tests Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ class Child(Parent):
1010
1111 ##Err: W0221
1212 def method (self , arg , arg1 ):
13- return arg , arg1 , arg2
13+ return arg , arg1
1414
Original file line number Diff line number Diff line change 22
33class Parent (object ):
44
5- def method (self , arg , arg = 1 ):
5+ def method (self , arg , arg1 = 1 ):
66 return arg
77
88
99class Child (Parent ):
1010
1111 ##Err: W0222
1212 def method (self , arg , arg1 ):
13- return arg , arg1 , arg2
13+ return arg , arg1
Original file line number Diff line number Diff line change 33class Object (object ):
44
55 ##Info: W0613
6- def method (self , arg , unused_arg ):
6+ def method (self , arg , arg2 ):
77 return arg * 2
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ class SixthGood(object):
3434class SeventhGood (object ):
3535 __slots__ = {"a" : "b" , "c" : "d" }
3636
37+ ##Err: E0238
3738class Bad (object ):
3839 __slots__ = list
3940
You can’t perform that action at this time.
0 commit comments