summaryrefslogtreecommitdiff
path: root/python/testData/inspections/AddCallSuper1_after.py
blob: 77b24d5b970bdff299ae3cefbf1df763b937b472 (plain)
1
2
3
4
5
6
7
8
9
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"