class DemoException(Exception):
"""An exception type for the demonstration."""
def demo_exc_handling():
print('-> coroutine started')
while True:
try:
x = yield
except DemoException: # <1>
print('*** DemoException handled. Continuing...')
else: # <2>
print('-> coroutine received: {!r}'.format(x))
finally:
print('-> 1111111111coroutine ending')
raise RuntimeError('This line should never run.')
if __name__ == '__main__':
exc_coro = demo_exc_handling()
next(exc_coro)
exc_coro.send(11)
I get the following output:
-> coroutine started
-> coroutine received: 11
-> 1111111111coroutine ending
-> 1111111111coroutine ending
I want to know why the finally statement executes twice? I would be very grateful for any help.
It prints twice because the finally clause executes even if the main program ends.
The coroutine is yielding the second time when the main program ends
Let's yield the iteration number and add a couple of printouts to see it
produces