Make sure Python is still loadable in mixed stub/python folders

This commit is contained in:
Dave Halter
2019-05-15 22:20:57 +02:00
parent f49d48fbd2
commit 904c4d04bb
2 changed files with 6 additions and 2 deletions

View File

@@ -0,0 +1 @@
in_python = ''

View File

@@ -25,13 +25,16 @@ with_stub_folder.in_with_stub_stub_folder
# Folders nested # Folders nested
from stub_folder.with_stub_folder import nested_stub_only, nested_with_stub from stub_folder.with_stub_folder import nested_stub_only, nested_with_stub, \
python_only
#? int() #? int()
nested_stub_only.in_stub_only nested_stub_only.in_stub_only
#? float() #? float()
nested_with_stub.in_both nested_with_stub.in_both
#? #?
with_stub_folder.in_python nested_with_stub.in_python
#? int() #? int()
nested_with_stub.in_stub nested_with_stub.in_stub
#? str()
python_only.in_python