Files
openide/python/testData/paramInfo/KwdArgInClass.py
Ekaterina Tuzova 36394cbad7 do not map implicit arguments to **args
fixed PY-10487 Garbled parameter info for call with double-starred arguments
2013-09-18 18:36:13 +04:00

10 lines
145 B
Python

class A:
def foo(self, e):
self.kw = {}
self.add_comm(**self<arg1>.kw)
def add_comm(self, **kw):
self.kw = []