blob: bc63275f6ca378c0b9ed51885292a6a72630cc50 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A:
2 def __init__(self, c, a = 5, *arg, **kwargs):
3 pass
4
5class 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"