micropython/tests/import/pkg7/subpkg1/subpkg2/mod3.py

12 lines
277 B
Python
Raw Normal View History

from ... import mod1
from ...mod2 import bar
print(mod1.foo)
print(bar)
# when attempting relative import beyond top-level package uPy raises ImportError
# whereas CPython raises a ValueError
try:
from .... import mod1
except (ImportError, ValueError):
print('Error')