Python: Show we're able to handle example with __init__.py files

This commit is contained in:
Rasmus Wriedt Larsen
2020-09-25 18:28:31 +02:00
parent 85607fe2d5
commit 2acfd4cdb1
7 changed files with 12 additions and 2 deletions

View File

@@ -13,6 +13,10 @@ Since PEP 420 was accepted in Python 3, this test is Python 3 only.
"""
from foo.bar.a import afunc
from foo_explicit.bar.a import explicit_afunc
# calls:afunc
afunc()
# calls:explicit_afunc
explicit_afunc()