File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -240,6 +240,7 @@ RUN(NAME modules_01 LABELS cpython llvm wasm wasm_x86)
240240RUN(NAME modules_02 LABELS cpython llvm wasm wasm_x86)
241241RUN(NAME test_import_01 LABELS cpython llvm)
242242RUN(NAME test_import_02 LABELS cpython llvm)
243+ RUN(NAME test_import_03 LABELS cpython llvm)
243244RUN(NAME test_math LABELS cpython llvm)
244245RUN(NAME test_numpy_01 LABELS cpython llvm c)
245246RUN(NAME test_numpy_02 LABELS cpython llvm c)
Original file line number Diff line number Diff line change 11import test_import
2- from test_import import print_a
32
4- print (print_a ())
3+ print (test_import . print_a ())
54print (test_import .print_b ())
65print (test_import .print_c ())
Original file line number Diff line number Diff line change 1+ from test_import import print_a
2+ from test_import .test_import_1 import print_b
3+
4+ print (print_a ())
5+ print (print_b ())
You can’t perform that action at this time.
0 commit comments