summaryrefslogtreecommitdiff
path: root/python/testData/completion/superInitKwParamsNoCompletion.after.py
blob: d23842b34ae3d0d94782e2ce9b0998452dc77d5f (plain)
1
2
3
4
5
6
7
class A:
    def __init__(self, first=True, second=False): pass

class B(A):
    def __init__(self, **kwargs): A.__init__(self, first=False)

b = B(fir)