summaryrefslogtreecommitdiff
path: root/tests/bytecode/mp-tests/try6.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/try6.py')
-rw-r--r--tests/bytecode/mp-tests/try6.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/bytecode/mp-tests/try6.py b/tests/bytecode/mp-tests/try6.py
deleted file mode 100644
index d5b68722e..000000000
--- a/tests/bytecode/mp-tests/try6.py
+++ /dev/null
@@ -1,15 +0,0 @@
-try:
- f()
-except:
- g()
-else:
- h()
-
-try:
- f()
-except:
- g()
-else:
- h()
-finally:
- i()