diff options
Diffstat (limited to 'tests/basics/try-module.py')
-rw-r--r-- | tests/basics/try-module.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/basics/try-module.py b/tests/basics/try-module.py deleted file mode 100644 index 03a9db15b5..0000000000 --- a/tests/basics/try-module.py +++ /dev/null @@ -1,15 +0,0 @@ -# Regression test for #290 - throwing exception in another module led to -# its namespace stick and namespace of current module not coming back. -import import1b - -def func1(): - print('func1') - -def func2(): - try: - import1b.throw() - except ValueError: - pass - func1() - -func2() |