asyncio icon indicating copy to clipboard operation
asyncio copied to clipboard

Let's go over all places where `except Exception` is used

Open gvanrossum opened this issue 10 years ago • 0 comments

...And replace it with except BaseException (or except:), making sure we understand the consequences. This would be better if a GeneratorExit is unexpectedly thrown into a coroutine (e.g. by calling its close() method), or if KeyboardInterrupt is used and then the loop is manually restarted.

gvanrossum avatar Sep 30 '15 14:09 gvanrossum