@themusicman@lemmy.world to Programmer Humor@lemmy.ml • 2 years agoLemmylemmy.worldimagemessage-square46arrow-up169cross-posted to: 196@lemmy.blahaj.zone
arrow-up169imageLemmylemmy.world@themusicman@lemmy.world to Programmer Humor@lemmy.ml • 2 years agomessage-square46cross-posted to: 196@lemmy.blahaj.zone
minus-square@csm10495@sh.itjust.workslinkfedilink7•edit-22 years agoYou know at least it printed an error. I hate when things silently swallow errors. I’m looking at you, Python programmers: try: <100 lines of nonsense> except: pass
minus-squareRimorsolinkfedilink6•2 years agoWe are not savages now we use with suppress(Exception): > 100 lines nonsense
You know at least it printed an error. I hate when things silently swallow errors.
I’m looking at you, Python programmers:
try: <100 lines of nonsense> except: pass
We are not savages now we use
with suppress(Exception): > 100 lines nonsense