Files
openide/python/testData/completion/superInitKwParams.py

8 lines
119 B
Python

class B:
def __init__(self, auno=True): pass
class C(B):
def __init__(self, **kwargs): pass
c = C(au<caret>)