mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46: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.bar' ...
|
|
|
|
from mypkg import foo
|
|
print(foo) # <module 'mypkg.bar' ...
|