1
0
forked from VimPlug/jedi

Completely remove names_dicts from the diff parser.

This commit is contained in:
Dave Halter
2016-12-17 17:15:44 +01:00
parent 589e1906e4
commit 5c52c7fb45
6 changed files with 11 additions and 64 deletions

View File

@@ -168,6 +168,7 @@ def get_module_names(module, all_scopes):
if all_scopes:
dct = module.used_names
else:
raise DeprecationWarning
dct = module.names_dict
return chain.from_iterable(dct.values())