bblfsh / python-driver

GNU General Public License v3.0
10 stars 16 forks source link

Inconsistent ordering of arguments if one is a keyword argument #201

Open chess-equality opened 5 years ago

chess-equality commented 5 years ago

I have the function:

def function9(param1, **param2):
    print "keywordArgs"

When parsing the arguments, the order of the arguments in the children array are inconsistent, such that sometimes I get args[0] = param1, args[1] = param2, other times I get args[0] = param2, args[1] = param1.