| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | class A: |
| 2 | def __init__(self, c, a = 5, *arg, **kwargs): | ||||
| 3 | pass | ||||
| 4 | |||||
| 5 | class B(A): | ||||
| 6 | def <caret><warning descr="Call to __init__ of super class is missed">__init__</warning>(self, r, b = 6, *args, **kwargs): | ||||
| 7 | print "Constructor B was called" | ||||