summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/super1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/super1.py')
-rw-r--r--tests/bytecode/mp-tests/super1.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/bytecode/mp-tests/super1.py b/tests/bytecode/mp-tests/super1.py
deleted file mode 100644
index 1512429939..0000000000
--- a/tests/bytecode/mp-tests/super1.py
+++ /dev/null
@@ -1,17 +0,0 @@
-class A(B):
- def f():
- super.a()
-
-class B(C):
- def g():
- def h():
- super.a()
-
-super.a()
-
-def i():
- super.a()
-
-def j():
- def k():
- super.a()