summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/raise1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/raise1.py')
-rw-r--r--tests/bytecode/mp-tests/raise1.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/bytecode/mp-tests/raise1.py b/tests/bytecode/mp-tests/raise1.py
deleted file mode 100644
index 9cceed4944..0000000000
--- a/tests/bytecode/mp-tests/raise1.py
+++ /dev/null
@@ -1,11 +0,0 @@
-def f():
- raise
-def g():
- raise 1
-def h():
- raise 1 from 2
-def i():
- try:
- f()
- except:
- raise