summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/class3.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/class3.py')
-rw-r--r--tests/bytecode/mp-tests/class3.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/bytecode/mp-tests/class3.py b/tests/bytecode/mp-tests/class3.py
deleted file mode 100644
index f49e2e8114..0000000000
--- a/tests/bytecode/mp-tests/class3.py
+++ /dev/null
@@ -1,10 +0,0 @@
-class A:
- def f(x):
- return x
- def g(y):
- def h(z):
- return x + y + z
- h(y)
-A()
-A.f(1)
-A.g(2)(3)