Files
openide/python/testData/inspections/ChangeSignatureKeywordAndPositionalParameters.py
Semyon Proshev 9b451f9e6d Register change signature quick fix without highlighting
To not to be overlayed with highlighting for arguments
2018-01-09 14:39:23 +03:00

5 lines
102 B
Python

def f(x, foo=1):
pass
f<caret>(x, 42, <warning descr="Unexpected argument">bar='spam'</warning>)