Why does the exception in foo whizz by unnoticed, but the exception in bar is raised?
foo
bar
def foo(): try: raise Exception(\
From the Python documentation:
If the finally clause raises another exception or executes a return or break statement, the saved exception is lost.