diff options
Diffstat (limited to 'tests/bytecode/mp-tests/try3.py')
-rw-r--r-- | tests/bytecode/mp-tests/try3.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/bytecode/mp-tests/try3.py b/tests/bytecode/mp-tests/try3.py deleted file mode 100644 index 9741aaf681..0000000000 --- a/tests/bytecode/mp-tests/try3.py +++ /dev/null @@ -1,14 +0,0 @@ -def f(): - try: - f() - except: - g() - finally: - f() - - try: - f() - except Exception: - g() - finally: - f() |