Files
openide/python/testData/intentions/convertVariadicParamUnrelatedCaret.py
Semyon Proshev fbdcd38462 Update ConvertVariadicParamIntention.isAvailable (PY-25035)
Display the intention only on parameter list and references to variadic parameters (not anywhere inside a function) and only if there are corresponding subscriptions / get() calls in function's body.
2017-11-22 15:00:37 +03:00

3 lines
66 B
Python

def foo(**kwargs):
print("ok"<caret>)
print(kwargs["foo"])