mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
Add a few more tests for nested stub folders
This commit is contained in:
@@ -0,0 +1 @@
|
||||
in_stub_only: int
|
||||
@@ -0,0 +1,2 @@
|
||||
in_python = ''
|
||||
in_both = ''
|
||||
@@ -0,0 +1,2 @@
|
||||
in_stub: int
|
||||
in_both: float
|
||||
@@ -22,3 +22,16 @@ with_stub_folder.in_with_stub_both_folder
|
||||
with_stub_folder.in_with_stub_python_folder
|
||||
#? float()
|
||||
with_stub_folder.in_with_stub_stub_folder
|
||||
|
||||
# Folders nested
|
||||
|
||||
from stub_folder.with_stub_folder import nested_stub_only, nested_with_stub
|
||||
|
||||
#? int()
|
||||
nested_stub_only.in_stub_only
|
||||
#? float()
|
||||
nested_with_stub.in_both
|
||||
#?
|
||||
with_stub_folder.in_python
|
||||
#? int()
|
||||
nested_with_stub.in_stub
|
||||
|
||||
Reference in New Issue
Block a user