1 2 3 4 5 6 7 8 9 10
# --- path: foo/__init__.py --- FOO = 42 # --- path: foo/bar/test.py --- from .. import FOO FOO # ^ defined: 7, 3