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)
240
240
RUN (NAME modules_02 LABELS cpython llvm wasm wasm_x86 )
241
241
RUN (NAME test_import_01 LABELS cpython llvm )
242
242
RUN (NAME test_import_02 LABELS cpython llvm )
243
+ RUN (NAME test_import_03 LABELS cpython llvm )
243
244
RUN (NAME test_math LABELS cpython llvm )
244
245
RUN (NAME test_numpy_01 LABELS cpython llvm c )
245
246
RUN (NAME test_numpy_02 LABELS cpython llvm c )
Original file line number Diff line number Diff line change 1
1
import test_import
2
- from test_import import print_a
3
2
4
- print (print_a ())
3
+ print (test_import . print_a ())
5
4
print (test_import .print_b ())
6
5
print (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