Catching all exceptions in Python
except Exception: vs except BaseException:: The difference between catching Exception and BaseException is that according to the exception hierarchy exception like SystemExit, KeyboardInterrupt and GeneratorExit will not be caught when using except Exception because they inherit directly from BaseException. except: vs except BaseException:: The difference between this two is mainly in python 2 (AFAIK), and … Read more