e.g.
try: foo() bar() except: pass
When foo function raise an exception, how to skip to the next line (bar) and execute it?
Can't be done if the call to bar is inside the try-block. Either you have to put the call outside of the try-except block, or use the else:
bar
try
else
try: foo() except: pass else: bar()
If bar might throw an exception as well, you have to use a separate try block for bar.