mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
function calls with key arguments work now
This commit is contained in:
@@ -132,7 +132,7 @@ class Executable(object):
|
||||
print '\n\nlala', key, value
|
||||
while key:
|
||||
try:
|
||||
key_param = param_dict[key]
|
||||
key_param = param_dict[str(key)]
|
||||
except KeyError:
|
||||
non_matching_keys.append((key, value))
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user