Files
openide/python/testData/refactoring/changeSignature/addPositionalVarargToKeywordVararg.before.py
andrey.matveev 157b37920e PY-42682 Fix IncorrectOperationException when adding keyword vararg to signature
(cherry picked from commit 24a4542fc09784ed4359ed558cd5a8e49b29bf1c)

IJ-MR-22901

GitOrigin-RevId: 6cd2544783580312e1194b3d76e47f9db88fbdf3
2022-04-05 10:34:08 +00:00

7 lines
167 B
Python

def fu<caret>n(**kwargs):
print(type(kwargs))
for key in kwargs:
print("%s = %s" % (key, kwargs[key]))
fun(name="geeks", ID="101", language="Python")