summaryrefslogtreecommitdiffstatshomepage
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, 15 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/try6.py b/tests/bytecode/mp-tests/try6.py
new file mode 100644
index 0000000000..d5b68722e9
--- /dev/null
+++ b/tests/bytecode/mp-tests/try6.py
@@ -0,0 +1,15 @@
+try:
+ f()
+except:
+ g()
+else:
+ h()
+
+try:
+ f()
+except:
+ g()
+else:
+ h()
+finally:
+ i()