asyncio
asyncio copied to clipboard
Let's go over all places where `except Exception` is used
...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.