aboutsummaryrefslogtreecommitdiff
path: root/tests/import/pkg7/subpkg1/subpkg2/mod3.py
blob: 0aa916d2082d2553e0c760a392f8f44986ec4d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
from ... import mod1
from ...mod2 import bar

print(mod1.foo)
print(bar)

# attempted relative import beyond top-level package
try:
    from .... import mod1
except ValueError:
    print("ValueError")