Files
openide/python/testData/intentions/convertVariadicParamSeveralCallsWithDifferentKeysCaretOnAvailableKey_after.py
Semyon Proshev 03a0dd5f59 Use default value of keys while determining if intention is available (PY-26286)
Unify replacing container usages, the only difference in cases was only presence of default value.

GitOrigin-RevId: 17d7aee3be0797956b00fda8d18953243d76297b
2020-01-29 15:36:20 +00:00

6 lines
124 B
Python

def foo(bar2=22, **kwargs):
a = kwargs.get("bar1", 22)
b = kwargs.get("bar1", default=23)
c = bar2
d = bar2