summaryrefslogtreecommitdiff
path: root/tests/bytecode/mp-tests/import3.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/import3.py')
-rw-r--r--tests/bytecode/mp-tests/import3.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/bytecode/mp-tests/import3.py b/tests/bytecode/mp-tests/import3.py
deleted file mode 100644
index 7f365a51e..000000000
--- a/tests/bytecode/mp-tests/import3.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import a.b
-import a.b.c
-from a.b import d
-from a.b.c import d
-
-from a import *
-from a import d, e
-from a import (d, e)