1
0
forked from VimPlug/jedi

Make sure inferring works even if a stub doesn't have all variables defined

This commit is contained in:
Dave Halter
2019-05-17 14:45:22 +02:00
parent 063eef3eaf
commit 9d5f57d798
3 changed files with 17 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ def ScriptInStubFolder(Script):
('code', 'expected'), [
('from no_python import foo', ['int']),
('from with_python import stub_only', ['str']),
('from with_python import python_only', []),
('from with_python import python_only', ['int']),
('from with_python import both', ['int']),
('from with_python import something_random', []),
('from with_python.module import in_sub_module', ['int']),