summaryrefslogtreecommitdiff
path: root/python/testData/inspections/AddCallSuper_after.py
blob: ee5b71cc5bfaa8143f86b86b1ca4295ca5e8f43f (plain)
1
2
3
4
5
6
7
8
class A:
    def __init__(self, c, a = 5, *arg, **kwargs):
        pass

class B(A):
    def __init__(self, r, c, b=6, *args, **kwargs):
        A.__init__(self, c, *args, **kwargs)
        print "Constructor B was called"