Errors should never pass silently
1–2 of 2 posts
Re: Errors should never pass silently
#2Agreed. except: pass is a major bad smell in any Python codebase, just as catch (...) is in C++. The higher up the stack you are the worse it is. A top level event loop with catch (...), maybe dispatching events, is a major red flag.