mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
11 lines
180 B
Python
11 lines
180 B
Python
from mypkg import foo
|
|
|
|
print(foo) # 42
|
|
|
|
import mypkg.foo
|
|
print(foo) # 42
|
|
print(mypkg.foo) # <module 'mypkg.foo' ...
|
|
|
|
from mypkg import foo
|
|
print(foo) # <module 'mypkg.foo' ...
|