Files
openide/python/testData/refactoring/changeSignature/scatteredKwargsArgsRemoveParam.before.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
71 B
Python

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