Tor Norbye | 3a2425a5 | 2013-11-04 10:16:08 -0800 | [diff] [blame] | 1 | class B: |
2 | def foo(self, a): | ||||
3 | pass | ||||
4 | |||||
5 | |||||
6 | class C1(B): | ||||
7 | def foo(self, *a): | ||||
8 | pass | ||||
9 | |||||
10 | |||||
11 | class C2(B): | ||||
12 | def foo<warning descr="Signature of method 'C2.foo()' does not match signature of base method in class 'B'">(self)</warning>: | ||||
13 | pass | ||||
14 | |||||
15 | |||||
16 | class C3(B): | ||||
17 | def foo(self, **a): | ||||
18 | pass | ||||
19 | |||||
20 | |||||
21 | class C4(B): | ||||
22 | def foo(self, a): | ||||
23 | pass |