summaryrefslogtreecommitdiff
path: root/python/testData/refactoring/changeSignature/addPositionalVarargToKeywordVararg.before.py
blob: 8cc78fee9eb088403f36cc415399cef06fd2bfd5 (plain)
1
2
3
4
5
6
7
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")