forked from VimPlug/jedi
partial is working partially now with the new parser, because invalid statements are not possible anymore (two times **kwargs)
This commit is contained in:
@@ -104,7 +104,10 @@ def deep_ast_copy(obj, new_elements_default=None, check_first=False):
|
||||
# TODO this sucks... we need to change it.
|
||||
# DOESNT WORK
|
||||
for unfinished in unfinished_parents:
|
||||
unfinished.parent = new_elements[unfinished.parent]
|
||||
try:
|
||||
unfinished.parent = new_elements[unfinished.parent]
|
||||
except KeyError: # TODO this keyerror is useless.
|
||||
pass
|
||||
|
||||
return result
|
||||
|
||||
|
||||
Reference in New Issue
Block a user