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

8 lines
89 B
Python

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