Files
2020-09-22 16:28:19 +02:00

7 lines
97 B
Python

import mypkg
print(mypkg.foo) # 42
import mypkg.foo
print(mypkg.foo) # <module 'mypkg.foo' ...