1
0
forked from VimPlug/jedi

Fix a python 2 dynamic issue

This commit is contained in:
Dave Halter
2019-08-21 01:13:19 +02:00
parent 4cbe2898c0
commit 84f6d95fde
3 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ def import_module_decorator(func):
python_parent, = inference_state.import_module(('os',), prefer_stubs=False)
python_value_set = ValueSet.from_sets(
func(inference_state, (n,), None, sys_path,)
for n in ['posixpath', 'ntpath', 'macpath', 'os2emxpath']
for n in [u'posixpath', u'ntpath', u'macpath', u'os2emxpath']
)
else:
python_value_set = ValueSet.from_sets(