mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
5 lines
128 B
Python
5 lines
128 B
Python
import mypkg.foo as _foo
|
|
import mypkg.bar as _bar
|
|
print(_foo) # <module 'mypkg.bar' ...
|
|
print(_bar) # <module 'mypkg.bar' ...
|