Hacker News new | ask | show | jobs
by ElevenPhonons 1751 days ago
It's worth noting that "except:" is not the same as "except Exception:" in Python. "except:" is catching BaseException which is often not what to do. BaseException is catching SystemExit amongst other things.

- https://docs.python.org/3/library/exceptions.html#exception-...