blob: 77b24d5b970bdff299ae3cefbf1df763b937b472 [file] [log] [blame]
class A:
def __init__(self, c, a = 5):
pass
class B(A):
def __init__(self, r, c, b=6):
"""docstring"""
A.__init__(self, c)
print "Constructor B was called"