Import multiple times



examples/modules/import_multiple_times/code.py
import one
import two

print("Hello")

examples/modules/import_multiple_times/one.py
import common
print("loading one")

examples/modules/import_multiple_times/two.py
import common
print("loading two")

examples/modules/import_multiple_times/common.py
print("import common")

import common
loading one
loading two
Hello