1 2 3 4 5 6 7 8 9 10 11
# --- path: foo/bar.py --- def baz(): pass # --- path: test.py --- from foo.bar import * baz() # ^ defined: 3