diff options
Diffstat (limited to 'tests/bytecode/mp-tests/try1.py')
-rw-r--r-- | tests/bytecode/mp-tests/try1.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/bytecode/mp-tests/try1.py b/tests/bytecode/mp-tests/try1.py deleted file mode 100644 index 10344c8ae..000000000 --- a/tests/bytecode/mp-tests/try1.py +++ /dev/null @@ -1,13 +0,0 @@ -def f(x): - try: - f(x) - except: - f(x) - try: - f(x) - except Exception: - f(x) - try: - f(x) - except Exception as e: - f(x, e) |