3dc324d3f1
This adds the Python files in the tests/ directory to be formatted with ./tools/codeformat.py. The basics/ subdirectory is excluded for now so we aren't changing too much at once. In a few places `# fmt: off`/`# fmt: on` was used where the code had special formatting for readability or where the test was actually testing the specific formatting.
19 lines
301 B
Python
19 lines
301 B
Python
# 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()
|