Files
openide/python/testData/refactoring/changeSignature/scatteredKwargsArgsAddParamAfter.after.py
Mikhail Golubev d8b871aec1 PY-24607 PY-24602 Add tests on other older problems with Change Signature
All these issues have been resolved in the new version of
PyChangeSignatureUsageProcessor
2017-06-08 14:55:12 +03:00

5 lines
96 B
Python

def f(x, foo, y, **kwargs):
print(foo, kwargs)
f(42, foo=None, y=None, extra1=1, extra2=2)