| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | class B: |
| 2 | def foo(self, arg1, arg2=None): | ||||
| 3 | pass | ||||
| 4 | |||||
| 5 | |||||
| 6 | class C(B): | ||||
| 7 | def foo<warning descr="Signature of method 'C.foo()' does not match signature of base method in class 'B'">(self, arg1=None)</warning>: #fail | ||||
| 8 | pass | ||||