summaryrefslogtreecommitdiff
path: root/tests/bytecode/mp-tests/try4.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/try4.py')
-rw-r--r--tests/bytecode/mp-tests/try4.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/bytecode/mp-tests/try4.py b/tests/bytecode/mp-tests/try4.py
deleted file mode 100644
index 412cb74ee..000000000
--- a/tests/bytecode/mp-tests/try4.py
+++ /dev/null
@@ -1,22 +0,0 @@
-try:
- f()
-except A:
- g()
-except:
- h()
-
-try:
- f()
-except A:
- g()
-except B as c:
- h()
-
-try:
- f()
-except A:
- g()
-except B as c:
- h()
-except:
- i()