blob: c73e2081f0c228414c26e96e1f68a2c28c53fd1d (
plain)
1
2
3
4
5
6
7
8
9
10
|
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')
|