Files
codeql/python/ql/test/experimental/dataflow/import-helper/test4.py
2020-09-22 16:28:19 +02:00

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' ...