blob: babb366602d4ed5bcb780abdf349b119d690b076 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A:
2 def __init__(self, c, a = 5):
3 pass
4
5class B(A):
6 def __init__(self, r, c, b=6):
7 A.__init__(self, c)