We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d41ea6c + ac0f2d3 commit bc448feCopy full SHA for bc448fe
python/ql/test/experimental/dataflow/import-helper/test4.py
@@ -1,4 +1,4 @@
1
import mypkg.foo as _foo
2
import mypkg.bar as _bar
3
-print(_foo) # <module 'mypkg.bar' ...
+print(_foo) # <module 'mypkg.foo' ...
4
print(_bar) # <module 'mypkg.bar' ...
python/ql/test/experimental/dataflow/import-helper/test7.py
@@ -4,7 +4,7 @@
5
import mypkg.foo
6
print(foo) # 42
7
-print(mypkg.foo) # <module 'mypkg.bar' ...
+print(mypkg.foo) # <module 'mypkg.foo' ...
8
9
from mypkg import foo
10
-print(foo) # <module 'mypkg.bar' ...
+print(foo) # <module 'mypkg.foo' ...
0 commit comments